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. formatItem :: LogItem a => ItemFormatter a

    katip Katip.Scribes.Handle

    Deprecated: Use bracketFormat instead

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

  3. forLoopFold :: a -> (a -> Bool) -> (a -> a) -> acc -> (acc -> a -> acc) -> acc

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

  4. forLoopState :: Monad m => a -> (a -> Bool) -> (a -> a) -> b -> (b -> a -> m b) -> m b

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

  5. forward :: (<~>) (m :: k -> Type) (n :: k -> Type) -> forall (a :: k) . () => m a -> n a

    lsp Language.LSP.Server

    No documentation available.

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

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

  8. force :: NonEmptyVector a -> NonEmptyVector a

    nonempty-vector Data.Vector.NonEmpty

    O(n) Yield the argument but force it not to retain any extra memory, possibly by copying it.

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

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

Page 123 of many | Previous | Next