Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. foldMap :: (Vector v a, Monoid m) => (a -> m) -> v a -> m

    fixed-vector Data.Vector.Fixed

    Map each element of the structure to a monoid, and combine the results. Similar to foldMap

  2. imap :: (Vector v a, Vector v b) => (Int -> a -> b) -> v a -> v b

    fixed-vector Data.Vector.Fixed

    Apply function to every element of the vector and its index.

  3. imapM :: (Vector v a, Vector v b, Applicative f) => (Int -> a -> f b) -> v a -> f (v b)

    fixed-vector Data.Vector.Fixed

    Apply monadic function to every element of the vector and its index.

  4. imapM_ :: (Vector v a, Applicative f) => (Int -> a -> f b) -> v a -> f ()

    fixed-vector Data.Vector.Fixed

    Apply monadic function to every element of the vector and its index and discard result.

  5. dimapFun :: forall (n :: PeanoNum) a b c d . ArityPeano n => (a -> b) -> (c -> d) -> Fun n b c -> Fun n a d

    fixed-vector Data.Vector.Fixed.Cont

    Apply function to parameters and result of Fun simultaneously.

  6. imap :: forall (n :: PeanoNum) a b . ArityPeano n => (Int -> a -> b) -> ContVec n a -> ContVec n b

    fixed-vector Data.Vector.Fixed.Cont

    Apply function to every element of the vector and its index.

  7. imapM :: forall (n :: PeanoNum) f a b . (ArityPeano n, Applicative f) => (Int -> a -> f b) -> ContVec n a -> f (ContVec n b)

    fixed-vector Data.Vector.Fixed.Cont

    Apply monadic function to every element of the vector and its index.

  8. imapM_ :: forall (n :: PeanoNum) f a b . (ArityPeano n, Applicative f) => (Int -> a -> f b) -> ContVec n a -> f ()

    fixed-vector Data.Vector.Fixed.Cont

    Apply monadic action to each element of vector and its index and ignore result.

  9. imapG :: (Vector v a, Vector w b, Dim v ~ Dim w) => (Int -> a -> b) -> v a -> w b

    fixed-vector Data.Vector.Fixed.Generic

    Apply function to every element of the vector and its index.

  10. imapMG :: (Vector v a, Vector w b, Dim w ~ Dim v, Monad m) => (Int -> a -> m b) -> v a -> m (w b)

    fixed-vector Data.Vector.Fixed.Generic

    Monadic map over vector.

Page 982 of many | Previous | Next