Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. concatMap :: forall a b (m :: Nat) (n :: Nat) . (Prim a, Prim b) => (a -> Vector m b) -> Vector n a -> Vector (n * m) b

    vector-sized Data.Vector.Primitive.Sized

    O(n*m) Map a function over a vector and concatenate the results. The function is required to always return the same length vector.

  2. imap :: forall a b (n :: Nat) . (Prim a, Prim b) => (Finite n -> a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Primitive.Sized

    O(n) Apply a function to every element of a vector and its index.

  3. imapM :: forall m a b (n :: Nat) . (Monad m, Prim a, Prim b) => (Finite n -> a -> m b) -> Vector n a -> m (Vector n b)

    vector-sized Data.Vector.Primitive.Sized

    O(n) Apply the monadic action to every element of a vector and its index, yielding a vector of results.

  4. imapM_ :: forall m a (n :: Nat) b . (Monad m, Prim a) => (Finite n -> a -> m b) -> Vector n a -> m ()

    vector-sized Data.Vector.Primitive.Sized

    O(n) Apply the monadic action to every element of a vector and its index, ignoring the results.

  5. concatMap :: forall a (m :: Nat) b (n :: Nat) . (a -> Vector m b) -> Vector n a -> Vector (n * m) b

    vector-sized Data.Vector.Sized

    O(n*m) Map a function over a vector and concatenate the results. The function is required to always return the same length vector.

  6. imap :: forall (n :: Nat) a b . (Finite n -> a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Sized

    O(n) Apply a function to every element of a vector and its index.

  7. imapM :: forall m (n :: Nat) a b . Monad m => (Finite n -> a -> m b) -> Vector n a -> m (Vector n b)

    vector-sized Data.Vector.Sized

    O(n) Apply the monadic action to every element of a vector and its index, yielding a vector of results.

  8. imapM_ :: forall m (n :: Nat) a b . Monad m => (Finite n -> a -> m b) -> Vector n a -> m ()

    vector-sized Data.Vector.Sized

    O(n) Apply the monadic action to every element of a vector and its index, ignoring the results.

  9. concatMap :: forall a b (m :: Nat) (n :: Nat) . (Storable a, Storable b) => (a -> Vector m b) -> Vector n a -> Vector (n * m) b

    vector-sized Data.Vector.Storable.Sized

    O(n*m) Map a function over a vector and concatenate the results. The function is required to always return the same length vector.

  10. imap :: forall a b (n :: Nat) . (Storable a, Storable b) => (Finite n -> a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Storable.Sized

    O(n) Apply a function to every element of a vector and its index.

Page 537 of many | Previous | Next