Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. foldlSmallUnliftedArray' :: PrimUnlifted a => (b -> a -> b) -> b -> SmallUnliftedArray a -> b

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Strict left-associated fold over the elements of an SmallUnliftedArray.

  2. foldlSmallUnliftedArrayM' :: (PrimUnlifted a, Monad m) => (b -> a -> m b) -> b -> SmallUnliftedArray a -> m b

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Strict effectful left-associated fold over the elements of an SmallUnliftedArray.

  3. foldrSmallUnliftedArray :: PrimUnlifted a => (a -> b -> b) -> b -> SmallUnliftedArray a -> b

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    No documentation available.

  4. foldrSmallUnliftedArray' :: PrimUnlifted a => (a -> b -> b) -> b -> SmallUnliftedArray a -> b

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Strict right-associated fold over the elements of an 'SmallUnliftedArray.

  5. freezeSmallUnliftedArray :: PrimMonad m => SmallMutableUnliftedArray (PrimState m) a -> Int -> Int -> m (SmallUnliftedArray a)

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Freezes a portion of a SmallMutableUnliftedArray, yielding a SmallUnliftedArray. This operation is safe, in that it copies the frozen portion, and the existing mutable array may still be used afterward.

  6. getSizeofSmallMutableUnliftedArray :: PrimMonad m => SmallMutableUnliftedArray (PrimState m) a -> m Int

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Yields the length of a MutableUnliftedArray.

  7. indexSmallUnliftedArray :: PrimUnlifted a => SmallUnliftedArray a -> Int -> a

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    No documentation available.

  8. itraverseSmallUnliftedArray_ :: (PrimUnlifted a, Applicative m) => (Int -> a -> m b) -> SmallUnliftedArray a -> m ()

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Effectful indexed traversal of the elements of an SmallUnliftedArray, discarding the resulting values.

  9. mapSmallUnliftedArray :: (PrimUnlifted a, PrimUnlifted b) => (a -> b) -> SmallUnliftedArray a -> SmallUnliftedArray b

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Map over the elements of an SmallUnliftedArray.

  10. newSmallUnliftedArray :: (PrimMonad m, PrimUnlifted a) => Int -> a -> m (SmallMutableUnliftedArray (PrimState m) a)

    primitive-unlifted Data.Primitive.Unlifted.SmallArray

    Creates a new MutableUnliftedArray with the specified value as initial contents.

Page 513 of many | Previous | Next