Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
sinkAllSocket :: forall (m :: Type -> Type) o . MonadIO m => Socket -> ConduitT ByteString o m ()conduit-extra Data.Conduit.Network.UDP Stream messages to the connected socket. The payload is sent using sendAll, so it might end up in multiple packets. This function does not automatically close the socket.
sinkAllToSocket :: forall (m :: Type -> Type) o . MonadIO m => Socket -> ConduitT Message o m ()conduit-extra Data.Conduit.Network.UDP Stream messages to the socket. Every handled item contains the message payload and the destination address. The payload is sent using sendAllTo, so it might end up in multiple packets. This function does not automatically close the socket.
isPotentiallyTrustworthyOrigin :: Bool -> ByteString -> Boolhttp-conduit Network.HTTP.Client.Conduit Algorithm described in "Secure Contexts", Section 3.1, "Is origin potentially trustworthy?" Note per RFC6265 section 5.4 user agent is free to define the meaning of "secure" protocol. See: https://w3c.github.io/webappsec-secure-contexts/#is-origin-trustworthy
data
CaptureAll (sym :: Symbol) aservant Servant.API.Capture Capture all remaining values from the request path under a certain type a. Example:
>>> -- GET /src/* >>> type MyAPI = "src" :> CaptureAll "segments" Text :> Get '[JSON] SourceFile
finally :: (HasCallStack, MonadMask m) => m a -> m b -> m asafe-exceptions Control.Exception.Safe Async safe version of finally
decodeAllEither' :: FromJSON a => ByteString -> Either ParseException [a]yaml Data.Yaml Like decodeEither', but decode multiple documents.
decodeAllFileEither :: FromJSON a => FilePath -> IO (Either ParseException [a])yaml Data.Yaml Like decodeFileEither, but decode multiple documents.
decodeAllFileThrow :: (MonadIO m, FromJSON a) => FilePath -> m [a]yaml Data.Yaml Like decodeFileThrow, but decode multiple documents.
decodeAllFileWithWarnings :: FromJSON a => FilePath -> IO (Either ParseException ([Warning], [a]))yaml Data.Yaml Like decodeFileWithWarnings, but decode multiple documents.
decodeAllThrow :: (MonadThrow m, FromJSON a) => ByteString -> m [a]yaml Data.Yaml Like decodeThrow, but decode multiple documents.