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. strMapM :: Applicative m => (a -> m b) -> Str a -> m (Str b)

    uniplate Data.Generics.Str

    No documentation available.

  2. data IntMap v

    uniplate Data.Generics.Uniplate.Data.Instances

    Invariant preserving version of IntMap from the containers packages, suitable for use with Uniplate. Use toIntMap to construct values, and fromIntMap to deconstruct values.

  3. fromIntMap :: IntMap v -> IntMap v

    uniplate Data.Generics.Uniplate.Data.Instances

    Deconstruct a value of type IntMap.

  4. fromMap :: Map k v -> Map k v

    uniplate Data.Generics.Uniplate.Data.Instances

    Deconstruct a value of type Map.

  5. toIntMap :: IntMap v -> IntMap v

    uniplate Data.Generics.Uniplate.Data.Instances

    Construct a value of type IntMap.

  6. toMap :: Ord k => Map k v -> Map k v

    uniplate Data.Generics.Uniplate.Data.Instances

    Construct a value of type Map.

  7. concatMap :: forall (v :: Type -> Type) a (v' :: Type -> Type) b (m :: Nat) (n :: Nat) . (Vector v a, Vector v' b) => (a -> Vector v' m b) -> Vector v n a -> Vector v' (n * m) b

    vector-sized Data.Vector.Generic.Sized

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

  8. imap :: forall (v :: Type -> Type) a b (n :: Nat) . (Vector v a, Vector v b) => (Finite n -> a -> b) -> Vector v n a -> Vector v n b

    vector-sized Data.Vector.Generic.Sized

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

  9. imapM :: forall m (v :: Type -> Type) a b (n :: Nat) . (Monad m, Vector v a, Vector v b) => (Finite n -> a -> m b) -> Vector v n a -> m (Vector v n b)

    vector-sized Data.Vector.Generic.Sized

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

  10. imapM_ :: forall m (v :: Type -> Type) a (n :: Nat) b . (Monad m, Vector v a) => (Finite n -> a -> m b) -> Vector v n a -> m ()

    vector-sized Data.Vector.Generic.Sized

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

Page 536 of many | Previous | Next