Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. forM :: (Monad m, Storable a, Storable b) => Vector a -> (a -> m b) -> m (Vector b)

    rebase Rebase.Data.Vector.Storable

    No documentation available.

  2. forM_ :: (Monad m, Storable a) => Vector a -> (a -> m b) -> m ()

    rebase Rebase.Data.Vector.Storable

    No documentation available.

  3. force :: Storable a => Vector a -> Vector a

    rebase Rebase.Data.Vector.Storable

    No documentation available.

  4. forM_ :: (PrimMonad m, Storable a) => MVector (PrimState m) a -> (a -> m b) -> m ()

    rebase Rebase.Data.Vector.Storable.Mutable

    No documentation available.

  5. forM :: (Monad m, Unbox a, Unbox b) => Vector a -> (a -> m b) -> m (Vector b)

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  6. forM_ :: (Monad m, Unbox a) => Vector a -> (a -> m b) -> m ()

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  7. force :: Unbox a => Vector a -> Vector a

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  8. forM_ :: (PrimMonad m, Unbox a) => MVector (PrimState m) a -> (a -> m b) -> m ()

    rebase Rebase.Data.Vector.Unboxed.Mutable

    No documentation available.

  9. for_ :: (Foldable t, Applicative f) => t a -> (a -> f b) -> f ()

    rebase Rebase.Prelude

    for_ is traverse_ with its arguments flipped. For a version that doesn't ignore the results see for. This is forM_ generalised to Applicative actions. for_ is just like forM_, but generalised to Applicative actions.

    Examples

    Basic usage:
    >>> for_ [1..4] print
    1
    2
    3
    4
    

  10. forever :: forall (m :: Type -> Type) a b e . Monad m => AutomatonExcept a b m e -> Automaton m a b

    rhine FRP.Rhine.ClSF.Except

    No documentation available.

Page 91 of many | Previous | Next