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. force :: (Exception e, MonadThrow f) => e -> [a] -> f a

    xml-conduit Text.XML.Cursor

    No documentation available.

  2. forceM :: (Exception e, MonadThrow f) => e -> [f a] -> f a

    xml-conduit Text.XML.Cursor

    No documentation available.

  3. force :: MonadThrow m => String -> m (Maybe a) -> m a

    xml-conduit Text.XML.Stream.Parse

    Force an optional parser into a required parser. All of the tag functions, attr, choose and many deal with Maybe parsers. Use this when you want to finally force something to happen.

  4. forceDomain :: (ByteString -> Maybe ByteString) -> Middleware

    wai-extra Network.Wai.Middleware.ForceDomain

    Force a domain by redirecting. The checkDomain function takes the current domain and checks whether it is correct. It should return Nothing if the domain is correct, or `Just "domain.com"` if it is incorrect.

  5. forceSSL :: Middleware

    wai-extra Network.Wai.Middleware.ForceSSL

    For requests that don't appear secure, redirect to https Since 3.0.7

  6. formatAsJSON :: OutputFormatterWithDetails

    wai-extra Network.Wai.Middleware.RequestLogger.JSON

    No documentation available.

  7. formatAsJSONWithHeaders :: OutputFormatterWithDetailsAndHeaders

    wai-extra Network.Wai.Middleware.RequestLogger.JSON

    Same as formatAsJSON but with response headers included This is useful for passing arbitrary data from your application out to the WAI layer for it to be logged, but you may need to be careful to subsequently redact any headers which may contain sensitive data.

  8. fork :: MonadBaseControl IO m => m () -> m ThreadId

    lifted-base Control.Concurrent.Lifted

    Generalized version of forkIO. Note that, while the forked computation m () has access to the captured state, all its side-effects in m are discarded. It is run only for its side-effects in IO.

  9. forkFinally :: MonadBaseControl IO m => m a -> (Either SomeException a -> m ()) -> m ThreadId

    lifted-base Control.Concurrent.Lifted

    Generalized version of forkFinally. Note that in forkFinally action and_then, while the forked action and the and_then function have access to the captured state, all their side-effects in m are discarded. They're run only for their side-effects in IO.

  10. forkOS :: MonadBaseControl IO m => m () -> m ThreadId

    lifted-base Control.Concurrent.Lifted

    Generalized version of forkOS. Note that, while the forked computation m () has access to the captured state, all its side-effects in m are discarded. It is run only for its side-effects in IO.

Page 29 of many | Previous | Next