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. formDataFiles :: FormDataResult a -> [File a]

    webgear-core WebGear.Core.MIMETypes

    No documentation available.

  2. formDataParams :: FormDataResult a -> [Param]

    webgear-core WebGear.Core.MIMETypes

    No documentation available.

  3. forbidden403 :: Set h Status => h () (With Response '[Status])

    webgear-core WebGear.Core.Trait.Status

    Forbidden 403 response

  4. forestGreen :: Color (SRGB 'NonLinear) Word8

    Color Graphics.Color.Standard.SVG

    Defined in SVG1.1 as

    forestgreen = rgb(34, 139, 34)
    

    Example

    >>> import Codec.Picture as JP
    
    >>> import Codec.Picture.Png (writePng)
    
    >>> let ColorSRGB r g b = forestGreen
    
    >>> let img = JP.generateImage (\_ _ -> JP.PixelRGB8 r g b) 200 34
    
    >>> writePng "files/svg/ForestGreen.png" img
    

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

    automaton Data.Automaton.Trans.Except

    No documentation available.

  6. foreverExcept :: forall (m :: Type -> Type) e a . (Functor m, Monad m) => StreamT (ExceptT e m) a -> StreamT m a

    automaton Data.Stream

    Execute the stream until it throws an exception, then restart it. One might be tempted to define this function recursively with applyExcept, but this would result in a runtime error, trying to define an infinite state.

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

    automaton Data.Stream.Except

    No documentation available.

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

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

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

    chart-svg Chart.Hud

    Lens between a FormatN and a Tick.

Page 94 of many | Previous | Next