Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

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

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

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

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

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

  6. foldMapA :: (Foldable t, Alternative m) => (a -> m b) -> t a -> m b

    fused-effects Control.Effect.NonDet

    Map a Foldable collection of values into a nondeterministic computation using the supplied action.

  7. buildEventTypeMap :: [EventType] -> IntMap EventType

    ghc-events GHC.RTS.Events

    No documentation available.

  8. module Data.Greskell.GMap

    This module defines types for parsing a "g:Map" GraphSON object. Usually users only have to use GMapEntry, because other types are just used internally to implement GraphSON parsers.

  9. newtype FlattenedMap (c :: Type -> Type -> Type) k v

    greskell-core Data.Greskell.GMap

    JSON encoding of a map as an array of flattened key-value pairs. ToJSON instance of this type encodes the internal map as an array of keys and values. FromJSON instance of this type parses that flattened map.

    • type c: container type for a map (e.g. Map and HashMap).
    • type k: key of the map.
    • type v: value of the map.

  10. FlattenedMap :: c k v -> FlattenedMap (c :: Type -> Type -> Type) k v

    greskell-core Data.Greskell.GMap

    No documentation available.

Page 984 of many | Previous | Next