Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type
Headers = [(CI ByteString, ByteString)]websockets Network.WebSockets Request headers
-
cassava Data.Csv The header corresponds to the first line a CSV file. Not all CSV files have a header.
-
cassava Data.Csv.Incremental An incremental parser that when fed data eventually returns a parsed Header, or an error.
-
tls Network.TLS No documentation available.
Header :: ProtocolType -> Version -> Word16 -> Headertls Network.TLS No documentation available.
-
This module provides the data types for representing HTTP headers, and operations for looking up header values and working with sequences of header values in Requests and Responses. To avoid having to provide separate set of operations for doing so, we introduce a type class HasHeaders to facilitate writing such processing using overloading instead.
-
HTTP Network.HTTP.Headers The Header data type pairs header names & values.
Header :: HeaderName -> String -> HeaderHTTP Network.HTTP.Headers No documentation available.
-
HTTP Network.HTTP.Headers HTTP HeaderName type, a Haskell data constructor for each specification-defined header, prefixed with Hdr and CamelCased, (i.e., eliding the - in the process.) Should you require using a custom header, there's the HdrCustom constructor which takes a String argument. Encoding HTTP header names differently, as Strings perhaps, is an equally fine choice..no decidedly clear winner, but let's stick with data constructors here.
type
HeaderSetter a = HeaderName -> String -> a -> aHTTP Network.HTTP.Headers No documentation available.