mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-23 19:29:17 +03:00
9 lines
143 B
Haskell
9 lines
143 B
Haskell
module Util where
|
|
|
|
import Control.Applicative (liftA2)
|
|
|
|
infixr 5 <++>
|
|
|
|
(<++>) :: Applicative f => f [a] -> f [a] -> f [a]
|
|
(<++>) = liftA2 (++)
|