wasp/waspc/e2e-test/Util.hs
2023-03-02 15:05:24 +01:00

9 lines
143 B
Haskell

module Util where
import Control.Applicative (liftA2)
infixr 5 <++>
(<++>) :: Applicative f => f [a] -> f [a] -> f [a]
(<++>) = liftA2 (++)