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.

  1. map :: Ord b => (a -> b) -> Set a -> Set b

    rio 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

  2. map :: (Char -> Char) -> Text -> Text

    rio 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.

  3. map :: (Char -> Char) -> Text -> Text

    rio 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.

  4. map :: (Vector v a, Vector v b) => (a -> b) -> v a -> v b

    rio RIO.Vector

    No documentation available.

  5. map :: (a -> b) -> Vector a -> Vector b

    rio RIO.Vector.Boxed

    No documentation available.

  6. map :: (Storable a, Storable b) => (a -> b) -> Vector a -> Vector b

    rio RIO.Vector.Storable

    No documentation available.

  7. map :: (Unbox a, Unbox b) => (a -> b) -> Vector a -> Vector b

    rio RIO.Vector.Unboxed

    No documentation available.

  8. map :: (Storable a, Storable b) => (a -> b) -> Vector a -> Vector b

    storablevector Data.StorableVector

    O(n) map f xs is the Vector obtained by applying f to each element of xs.

  9. map :: (Storable x, Storable y) => (x -> y) -> Vector x -> Vector y

    storablevector Data.StorableVector.Lazy

    No documentation available.

  10. map :: (Storable x, Storable y) => (x -> y) -> Vector x -> Vector y

    storablevector Data.StorableVector.Lazy.Pattern

    No documentation available.

Page 20 of many | Previous | Next