Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapTriple :: Applicative m => (a -> m d, b -> m e, c -> m f) -> (a, b, c) -> m (d, e, f)utility-ht Control.Applicative.HT No documentation available.
mapFst :: Functor f => (a -> f c) -> (a, b) -> f (c, b)utility-ht Control.Functor.HT No documentation available.
mapFst3 :: Functor f => (a -> f d) -> (a, b, c) -> f (d, b, c)utility-ht Control.Functor.HT No documentation available.
mapSnd :: Functor f => (b -> f c) -> (a, b) -> f (a, c)utility-ht Control.Functor.HT No documentation available.
mapSnd3 :: Functor f => (b -> f d) -> (a, b, c) -> f (a, d, c)utility-ht Control.Functor.HT No documentation available.
mapThd3 :: Functor f => (c -> f d) -> (a, b, c) -> f (a, b, d)utility-ht Control.Functor.HT No documentation available.
mapBoth :: (a -> c) -> (b -> d) -> Either a b -> Either c dutility-ht Data.Either.HT No documentation available.
mapLeft :: (a -> b) -> Either a c -> Either b cutility-ht Data.Either.HT No documentation available.
mapRight :: (b -> c) -> Either a b -> Either a cutility-ht Data.Either.HT No documentation available.
mapAdjacent :: (a -> a -> b) -> [a] -> [b]utility-ht Data.List.HT This function combines every pair of neighbour elements in a list with a certain function.
>>> mapAdjacent (<=) "" [] >>> mapAdjacent (<=) "a" [] >>> mapAdjacent (<=) "aba" [True,False] >>> mapAdjacent (,) "abc" [('a','b'),('b','c')]\x xs -> mapAdjacent subtract (scanl (+) x xs) == (xs::[Integer])