Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: (Char -> Char) -> Text -> Textrio RIO.Text.Lazy O(n) map f t is the Text obtained by applying f to each element of t. Performs replacement on invalid scalar values.
map :: (Vector v a, Vector v b) => (a -> b) -> v a -> v brio RIO.Vector No documentation available.
map :: (a -> b) -> Vector a -> Vector brio RIO.Vector.Boxed No documentation available.
map :: (Storable a, Storable b) => (a -> b) -> Vector a -> Vector brio RIO.Vector.Storable No documentation available.
map :: (Unbox a, Unbox b) => (a -> b) -> Vector a -> Vector brio RIO.Vector.Unboxed No documentation available.
map :: (Storable a, Storable b) => (a -> b) -> Vector a -> Vector bstorablevector Data.StorableVector O(n) map f xs is the Vector obtained by applying f to each element of xs.
map :: (Storable x, Storable y) => (x -> y) -> Vector x -> Vector ystorablevector Data.StorableVector.Lazy No documentation available.
map :: (Storable x, Storable y) => (x -> y) -> Vector x -> Vector ystorablevector Data.StorableVector.Lazy.Pattern No documentation available.
map :: (Size size, Storable x, Storable y) => (x -> y) -> Vector size x -> Vector size ystorablevector Data.StorableVector.Lazy.Typed No documentation available.
map :: TextualMonoid t => (Char -> Char) -> t -> tmonoid-subclasses Data.Monoid.Textual Equivalent to map from Data.List with a Char -> Char function. Preserves all non-character data.
map f == concatMap (singleton . f)