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.
formatItem :: LogItem a => ItemFormatter akatip Katip.Scribes.Handle Deprecated: Use bracketFormat instead
forLoop :: Monad m => a -> (a -> Bool) -> (a -> a) -> (a -> m ()) -> m ()loop Control.Loop forLoop start cond inc f: A C-style for loop with starting value, loop condition and incrementor.
forLoopFold :: a -> (a -> Bool) -> (a -> a) -> acc -> (acc -> a -> acc) -> accloop Control.Loop forLoopFold start cond inc acc0 f: A pure fold using a for loop instead of a list for performance. Care is taken that acc0 not be strictly evaluated if unless done so by f.
forLoopState :: Monad m => a -> (a -> Bool) -> (a -> a) -> b -> (b -> a -> m b) -> m bloop Control.Loop forLoopState start cond inc initialState f: A C-style for loop with starting value, loop condition, incrementor and a state that is threaded through the computation.
forward :: (<~>) (m :: k -> Type) (n :: k -> Type) -> forall (a :: k) . () => m a -> n alsp Language.LSP.Server No documentation available.
forM :: Monad m => NonEmptyVector a -> (a -> m b) -> m (NonEmptyVector b)nonempty-vector Data.Vector.NonEmpty O(n) Apply the monadic action to all elements of the non-empty vector, yielding a non0empty vector of results. Equivalent to flip mapM.
forM_ :: Monad m => NonEmptyVector a -> (a -> m b) -> m ()nonempty-vector Data.Vector.NonEmpty O(n) Apply the monadic action to all elements of a non-empty vector and ignore the results. Equivalent to flip mapM_.
force :: NonEmptyVector a -> NonEmptyVector anonempty-vector Data.Vector.NonEmpty O(n) Yield the argument but force it not to retain any extra memory, possibly by copying it.
forced :: (Vector v a, Vector v b) => Iso (v a) (v b) (v a) (v b)optics-extra Data.Vector.Generic.Optics Convert a Vector to a version that doesn't retain any extra memory.
forced :: Iso (Vector a) (Vector b) (Vector a) (Vector b)optics-extra Data.Vector.Optics Convert a Vector to a version that doesn't retain any extra memory.