effect-monad-0.6.1: Embeds effect systems into Haskell using parameteric effect monads
Control.Effect.Helpers.List
data List l where Source
Constructors
type family s :++ t :: [*] Source
Instances
append :: List s -> List t -> List (s :++ t) Source
class Split s t where Source
Methods
split :: List (s :++ t) -> (List s, List t) Source