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.

  1. forcePair :: (a, b) -> (a, b)

    utility-ht Data.Tuple.Lazy

    No documentation available.

  2. forkTCPServer :: MonadUnliftIO m => ServerSettings -> (AppData -> m ()) -> m ThreadId

    conduit-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

  3. 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'
    

  4. foreachStep :: Monad m => (String -> m ()) -> (a -> m ()) -> StepT m a -> m ()

    servant Servant.Types.SourceT

    See foreach.

  5. foreachYieldStep :: forall (m :: Type -> Type) a b . Functor m => (a -> StepT m b -> StepT m b) -> StepT m a -> StepT m b

    servant Servant.Types.SourceT

    Traverse the StepT and call the given function for each Yield.

  6. form :: Html -> Html

    blaze-html Text.Blaze.Html4.FrameSet

    Combinator for the <form> element. Example:

    form $ span $ toHtml "foo"
    
    Result:
    <form><span>foo</span></form>
    

  7. form :: Html -> Html

    blaze-html Text.Blaze.Html4.Strict

    Combinator for the <form> element. Example:

    form $ span $ toHtml "foo"
    
    Result:
    <form><span>foo</span></form>
    

  8. form :: Html -> Html

    blaze-html Text.Blaze.Html4.Transitional

    Combinator for the <form> element. Example:

    form $ span $ toHtml "foo"
    
    Result:
    <form><span>foo</span></form>
    

  9. form :: Html -> Html

    blaze-html Text.Blaze.Html5

    Combinator for the <form> element. Example:

    form $ span $ toHtml "foo"
    
    Result:
    <form><span>foo</span></form>
    

  10. form :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the form attribute. Example:

    div ! form "bar" $ "Hello."
    
    Result:
    <div form="bar">Hello.</div>
    

Page 21 of many | Previous | Next