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.
force :: (Exception e, MonadThrow f) => e -> [a] -> f axml-conduit Text.XML.Cursor No documentation available.
forceM :: (Exception e, MonadThrow f) => e -> [f a] -> f axml-conduit Text.XML.Cursor No documentation available.
force :: MonadThrow m => String -> m (Maybe a) -> m axml-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.
forceDomain :: (ByteString -> Maybe ByteString) -> Middlewarewai-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.
-
wai-extra Network.Wai.Middleware.ForceSSL For requests that don't appear secure, redirect to https Since 3.0.7
formatAsJSON :: OutputFormatterWithDetailswai-extra Network.Wai.Middleware.RequestLogger.JSON No documentation available.
formatAsJSONWithHeaders :: OutputFormatterWithDetailsAndHeaderswai-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.
fork :: MonadBaseControl IO m => m () -> m ThreadIdlifted-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.
forkFinally :: MonadBaseControl IO m => m a -> (Either SomeException a -> m ()) -> m ThreadIdlifted-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.
forkOS :: MonadBaseControl IO m => m () -> m ThreadIdlifted-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.