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.

  1. HEADERs :: String -> String -> SearchQuery

    HaskellNet Network.HaskellNet.IMAP

    No documentation available.

  2. newtype HeaderName

    cgi Network.CGI.Protocol

    A string with case insensitive equality and comparisons.

  3. HeaderName :: String -> HeaderName

    cgi Network.CGI.Protocol

    No documentation available.

  4. type Headers = [(HeaderName, String)]

    cgi Network.CGI.Protocol

    HTTP headers.

  5. newtype Headed a

    colonnade Colonnade

    As the first argument to the Colonnade type constructor, this indictates that the columnar encoding has a header. This type is isomorphic to Identity but is given a new name to clarify its intent:

    example :: Colonnade Headed Foo Text
    
    The term example represents a columnar encoding of Foo in which the columns have headings.

  6. Headed :: a -> Headed a

    colonnade Colonnade

    No documentation available.

  7. class Headedness (h :: Type -> Type)

    colonnade Colonnade

    This class communicates that a container holds either zero elements or one element. Furthermore, all inhabitants of the type must hold the same number of elements. Both Headed and Headless have instances. The following law accompanies any instances:

    maybe x (\f -> f (headednessPure x)) headednessContents == x
    todo: come up with another law that relates to Traversable
    
    Consequently, there is no instance for Maybe, which cannot satisfy the laws since it has inhabitants which hold different numbers of elements. Nothing holds 0 elements and Just holds 1 element.

  8. data Headless a

    colonnade Colonnade

    As the first argument to the Colonnade type constructor, this indictates that the columnar encoding does not have a header. This type is isomorphic to Proxy but is given a new name to clarify its intent:

    example :: Colonnade Headless Foo Text
    
    The term example represents a columnar encoding of Foo in which the columns do not have headings.

  9. Headless :: Headless a

    colonnade Colonnade

    No documentation available.

  10. newtype Headed a

    colonnade Colonnade.Encode

    As the first argument to the Colonnade type constructor, this indictates that the columnar encoding has a header. This type is isomorphic to Identity but is given a new name to clarify its intent:

    example :: Colonnade Headed Foo Text
    
    The term example represents a columnar encoding of Foo in which the columns have headings.

Page 100 of many | Previous | Next