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.
formDataFiles :: FormDataResult a -> [File a]webgear-core WebGear.Core.MIMETypes No documentation available.
formDataParams :: FormDataResult a -> [Param]webgear-core WebGear.Core.MIMETypes No documentation available.
forbidden403 :: Set h Status => h () (With Response '[Status])webgear-core WebGear.Core.Trait.Status Forbidden 403 response
forestGreen :: Color (SRGB 'NonLinear) Word8Color 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
forever :: forall (m :: Type -> Type) a b e . Monad m => AutomatonExcept a b m e -> Automaton m a bautomaton Data.Automaton.Trans.Except No documentation available.
-
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.
forever :: forall (m :: Type -> Type) a e . Monad m => StreamExcept a m e -> OptimizedStreamT m aautomaton Data.Stream.Except No documentation available.
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
forkEmit :: forall (m :: Type -> Type) a . Monad m => Emitter m a -> Committer m a -> Emitter m abox 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]
formatN' :: Lens' Tick (Maybe FormatN)chart-svg Chart.Hud Lens between a FormatN and a Tick.