Hoogle Search
Within LTS Haskell 24.49 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
formatScientificBuilder :: FPFormat -> Maybe Int -> Scientific -> Builderscientific Data.ByteString.Builder.Scientific Like scientificBuilder but provides rendering options.
formatScientific :: FPFormat -> Maybe Int -> Scientific -> Stringscientific Data.Scientific Like show but provides rendering options.
formatScientificBuilder :: FPFormat -> Maybe Int -> Scientific -> Builderscientific Data.Text.Lazy.Builder.Scientific Like scientificBuilder but provides rendering options.
-
optparse-applicative Options.Applicative Intersperse matched options and arguments normally, but allow unmatched options to be treated as positional arguments. This is sometimes useful if one is wrapping a third party cli tool and needs to pass options through, while also providing a handful of their own options. Not recommended in general as typos by the user may not yield a parse error and cause confusion.
-
optparse-applicative Options.Applicative.Builder Intersperse matched options and arguments normally, but allow unmatched options to be treated as positional arguments. This is sometimes useful if one is wrapping a third party cli tool and needs to pass options through, while also providing a handful of their own options. Not recommended in general as typos by the user may not yield a parse error and cause confusion.
formDataBody :: MonadIO m => [Part] -> Request -> m Requesthttp-client Network.HTTP.Client.MultipartFormData Add form data to the Request. This sets a new requestBody, adds a content-type request header and changes the method to POST.
formDataBodyWithBoundary :: Applicative m => ByteString -> [PartM m] -> Request -> m Requesthttp-client Network.HTTP.Client.MultipartFormData Add form data with supplied boundary
forConcurrently :: (MonadUnliftIO m, Traversable t) => t a -> (a -> m b) -> m (t b)unliftio UnliftIO.Async Similar to mapConcurrently but with arguments flipped
forConcurrently_ :: (MonadUnliftIO m, Foldable f) => f a -> (a -> m b) -> m ()unliftio UnliftIO.Async Similar to mapConcurrently_ but with arguments flipped
forkFinally :: MonadUnliftIO m => m a -> (Either SomeException a -> m ()) -> m ThreadIdunliftio UnliftIO.Concurrent Unlifted version of forkFinally.