Hoogle Search
Within LTS Haskell 24.16 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: Ord k => (a -> b) -> RMap k a -> RMap k brec-def Data.Recursive.Map RM.get (RM.map (applyFun f) m) === M.map (applyFun f) (RM.get m)
map :: (Char -> Char) -> Rope -> Roperope-utf16-splay Data.Rope.UTF16 Map over the characters of a rope
map :: (Char -> Char) -> Rope -> Roperope-utf16-splay Data.Rope.UTF16.Internal Map over the characters of a rope
map :: (Measured v a, Measured w b) => (a -> b) -> SplayTree v a -> SplayTree w brope-utf16-splay Data.SplayTree No documentation available.
map :: (a -> b) -> Vector a -> Vector brrb-vector Data.RRBVector Apply the function to every element.
>>> map (+ 1) (fromList [1, 2, 3]) fromList [2,3,4]
-
sample-frame-np Sound.Frame.NumericPrelude.Stereo No documentation available.
-
sized Data.Sized Map function. Since 0.7.0.0
map :: (a -> b) -> Slist a -> Slist bslist Slist O(n). Applies the given function to each element of the slist.
map f (slist [x1, x2, ..., xn]) == slist [f x1, f x2, ..., f xn] map f (infiniteSlist [x1, x2, ...]) == infiniteSlist [f x1, f x2, ...]
map :: (a -> b) -> Slist a -> Slist bslist Slist.Type O(n). Applies the given function to each element of the slist.
map f (slist [x1, x2, ..., xn]) == slist [f x1, f x2, ..., f xn] map f (infiniteSlist [x1, x2, ...]) == infiniteSlist [f x1, f x2, ...]
map :: forall a (m :: Nat) . IsStaticText a => (Elem a -> Elem a) -> Static a m -> Static a mstatic-text Data.StaticText Map a Static to a Static of the same length.
>>> map toUpper $(st "Hello") :: Static String 5 "HELLO"