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.
forM :: (Monad m, Storable a, Storable b) => Vector a -> (a -> m b) -> m (Vector b)rebase Rebase.Data.Vector.Storable No documentation available.
forM_ :: (Monad m, Storable a) => Vector a -> (a -> m b) -> m ()rebase Rebase.Data.Vector.Storable No documentation available.
force :: Storable a => Vector a -> Vector arebase Rebase.Data.Vector.Storable No documentation available.
forM_ :: (PrimMonad m, Storable a) => MVector (PrimState m) a -> (a -> m b) -> m ()rebase Rebase.Data.Vector.Storable.Mutable No documentation available.
forM :: (Monad m, Unbox a, Unbox b) => Vector a -> (a -> m b) -> m (Vector b)rebase Rebase.Data.Vector.Unboxed No documentation available.
forM_ :: (Monad m, Unbox a) => Vector a -> (a -> m b) -> m ()rebase Rebase.Data.Vector.Unboxed No documentation available.
force :: Unbox a => Vector a -> Vector arebase Rebase.Data.Vector.Unboxed No documentation available.
forM_ :: (PrimMonad m, Unbox a) => MVector (PrimState m) a -> (a -> m b) -> m ()rebase Rebase.Data.Vector.Unboxed.Mutable No documentation available.
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
forever :: forall (m :: Type -> Type) a b e . Monad m => AutomatonExcept a b m e -> Automaton m a brhine FRP.Rhine.ClSF.Except No documentation available.