Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
utility-ht Data.Tuple.Lazy No documentation available.
forkTCPServer :: MonadUnliftIO m => ServerSettings -> (AppData -> m ()) -> m ThreadIdconduit-extra Data.Conduit.Network Fork a TCP Server Will fork the runGeneralTCPServer function but will only return from this call when the server is bound to the port and accepting incoming connections. Will return the thread id of the server Since 1.1.4
foreach :: Monad m => (String -> m ()) -> (a -> m ()) -> SourceT m a -> m ()servant Servant.Types.SourceT Run action for each value in the SourceT.
>>> foreach fail print $ source ("abc" :: String) 'a' 'b' 'c'
foreachStep :: Monad m => (String -> m ()) -> (a -> m ()) -> StepT m a -> m ()servant Servant.Types.SourceT See foreach.
-
servant Servant.Types.SourceT Traverse the StepT and call the given function for each Yield.
-
blaze-html Text.Blaze.Html4.FrameSet Combinator for the <form> element. Example:
form $ span $ toHtml "foo"
Result:<form><span>foo</span></form>
-
blaze-html Text.Blaze.Html4.Strict Combinator for the <form> element. Example:
form $ span $ toHtml "foo"
Result:<form><span>foo</span></form>
-
blaze-html Text.Blaze.Html4.Transitional Combinator for the <form> element. Example:
form $ span $ toHtml "foo"
Result:<form><span>foo</span></form>
-
blaze-html Text.Blaze.Html5 Combinator for the <form> element. Example:
form $ span $ toHtml "foo"
Result:<form><span>foo</span></form>
form :: AttributeValue -> Attributeblaze-html Text.Blaze.Html5.Attributes Combinator for the form attribute. Example:
div ! form "bar" $ "Hello."
Result:<div form="bar">Hello.</div>