Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
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"
map :: IsStaticText a => (Elem a -> Elem a) -> a -> astatic-text Data.StaticText.Class No documentation available.
map :: forall t (m :: Type -> Type) a b . (IsStream t, Monad m) => (a -> b) -> t m a -> t m bstreamly Streamly.Internal.Data.Stream.IsStream map = fmap
Same as fmap.> D.toList $ D.map (+1) $ D.fromList [1,2,3] [2,3,4]