Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. forever :: forall (m :: Type -> Type) a e . Monad m => StreamExcept a m e -> OptimizedStreamT m a

    automaton Data.Stream.Except

    No documentation available.

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

    base-prelude BasePrelude

    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
    

  3. forkEmit :: forall (m :: Type -> Type) a . Monad m => Emitter m a -> Committer m a -> Emitter m a

    box Box.Connectors

    Glues an emitter to a committer, then resupplies the emitter.

    >>> (c1,l1) <- refCommitter :: IO (Committer IO Int, IO [Int])
    
    >>> close $ toListM <$> (forkEmit <$> (qList [1..3]) <*> pure c1)
    [1,2,3]
    
    >>> l1
    [1,2,3]
    

  4. format :: CharSet

    charset Data.CharSet.Unicode

    No documentation available.

  5. format :: CharSet

    charset Data.CharSet.Unicode.Category

    No documentation available.

  6. formatN' :: Lens' Tick (Maybe FormatN)

    chart-svg Chart.Hud

    Lens between a FormatN and a Tick.

  7. forgetHud :: ChartOptions -> ChartOptions

    chart-svg Chart.Markup

    Processes the hud options and turns them into charts, rescales the existing charts, resets the hud options to mempty, and turns on ScalePArea in chart styles. Note that this is a destructive operation, and, in particular, that

    view #chartTree (forgetHud (mempty & set #chartTree c)) /= c
    

  8. formatAffixesInside :: Formatting -> Bool

    citeproc Citeproc.Types

    No documentation available.

  9. formatDelimiter :: Formatting -> Maybe Text

    citeproc Citeproc.Types

    No documentation available.

  10. formatDisplay :: Formatting -> Maybe DisplayStyle

    citeproc Citeproc.Types

    No documentation available.

Page 94 of many | Previous | Next