Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: Ord b => (a -> b) -> Set a -> Set brio RIO.Set map f s is the set obtained by applying f to each element of s. It's worth noting that the size of the result may be smaller if, for some (x,y), x /= y && f x == f y
map :: (Char -> Char) -> Text -> Textrio RIO.Text O(n) map f t is the Text obtained by applying f to each element of t. Example:
>>> let message = pack "I am not angry. Not at all." >>> T.map (\c -> if c == '.' then '!' else c) message "I am not angry! Not at all!"
Performs replacement on invalid scalar values.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.