Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. mapAccumL :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)

    rio RIO.Text

    O(n) Like a combination of map and foldl'. Applies a function to each element of a Text, passing an accumulating parameter from left to right, and returns a final Text. Performs replacement on invalid scalar values.

  2. mapAccumR :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)

    rio RIO.Text

    The mapAccumR function behaves like a combination of map and a strict foldr; it applies a function to each element of a Text, passing an accumulating parameter from right to left, and returning a final value of this accumulator together with the new Text. Performs replacement on invalid scalar values.

  3. mapAccumL :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)

    rio RIO.Text.Lazy

    O(n) Like a combination of map and foldl'. Applies a function to each element of a Text, passing an accumulating parameter from left to right, and returns a final Text. Performs replacement on invalid scalar values.

  4. mapAccumR :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)

    rio RIO.Text.Lazy

    The mapAccumR function behaves like a combination of map and a strict foldr; it applies a function to each element of a Text, passing an accumulating parameter from right to left, and returning a final value of this accumulator together with the new Text. Performs replacement on invalid scalar values.

  5. mapM :: (Monad m, Vector v a, Vector v b) => (a -> m b) -> v a -> m (v b)

    rio RIO.Vector

    No documentation available.

  6. mapM_ :: (Monad m, Vector v a) => (a -> m b) -> v a -> m ()

    rio RIO.Vector

    No documentation available.

  7. mapMaybe :: (Vector v a, Vector v b) => (a -> Maybe b) -> v a -> v b

    rio RIO.Vector

    No documentation available.

  8. mapM :: Monad m => (a -> m b) -> Vector a -> m (Vector b)

    rio RIO.Vector.Boxed

    No documentation available.

  9. mapM_ :: Monad m => (a -> m b) -> Vector a -> m ()

    rio RIO.Vector.Boxed

    No documentation available.

  10. mapMaybe :: (a -> Maybe b) -> Vector a -> Vector b

    rio RIO.Vector.Boxed

    No documentation available.

Page 127 of many | Previous | Next