utility-ht-0.0.10: Various small helper functions for Lists, Maybes, Tuples, Functions

Safe HaskellSafe-Inferred
LanguageHaskell98

Control.Functor.HT

Documentation

void :: Functor f => f a -> f () Source

map :: Functor f => (a -> b) -> f a -> f b Source

for :: Functor f => f a -> (a -> b) -> f b Source

unzip :: Functor f => f (a, b) -> (f a, f b) Source

unzip3 :: Functor f => f (a, b, c) -> (f a, f b, f c) Source