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.

  1. 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.

  2. 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.

  3. isPotentiallyTrustworthyOrigin :: Bool -> ByteString -> Bool

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

  4. data CaptureAll (sym :: Symbol) a

    servant 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
    

  5. finally :: (HasCallStack, MonadMask m) => m a -> m b -> m a

    safe-exceptions Control.Exception.Safe

    Async safe version of finally

  6. decodeAllEither' :: FromJSON a => ByteString -> Either ParseException [a]

    yaml Data.Yaml

    Like decodeEither', but decode multiple documents.

  7. decodeAllFileEither :: FromJSON a => FilePath -> IO (Either ParseException [a])

    yaml Data.Yaml

    Like decodeFileEither, but decode multiple documents.

  8. decodeAllFileThrow :: (MonadIO m, FromJSON a) => FilePath -> m [a]

    yaml Data.Yaml

    Like decodeFileThrow, but decode multiple documents.

  9. decodeAllFileWithWarnings :: FromJSON a => FilePath -> IO (Either ParseException ([Warning], [a]))

    yaml Data.Yaml

    Like decodeFileWithWarnings, but decode multiple documents.

  10. decodeAllThrow :: (MonadThrow m, FromJSON a) => ByteString -> m [a]

    yaml Data.Yaml

    Like decodeThrow, but decode multiple documents.

Page 227 of many | Previous | Next