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. module WebGear.Core.Trait.Path

    Middlewares related to request paths. All the middlewares below attempt to match components of the request path. In case of a mismatch, they abandon the current handler and tries the next handler.

  2. newtype Path

    webgear-core WebGear.Core.Trait.Path

    A path component which is literally matched against the request but discarded after that.

  3. Path :: Text -> Path

    webgear-core WebGear.Core.Trait.Path

    No documentation available.

  4. data PathEnd

    webgear-core WebGear.Core.Trait.Path

    Trait to indicate that no more path components are present in the request

  5. PathEnd :: PathEnd

    webgear-core WebGear.Core.Trait.Path

    No documentation available.

  6. data PathVar (tag :: Symbol) val

    webgear-core WebGear.Core.Trait.Path

    A path variable that is extracted and converted to a value of type val. The tag is usually a type-level symbol (string) to uniquely identify this variable.

  7. PathVar :: PathVar (tag :: Symbol) val

    webgear-core WebGear.Core.Trait.Path

    No documentation available.

  8. data PathVarError

    webgear-core WebGear.Core.Trait.Path

    Failure to extract a PathVar

  9. PathVarNotFound :: PathVarError

    webgear-core WebGear.Core.Trait.Path

    No documentation available.

  10. PathVarParseError :: Text -> PathVarError

    webgear-core WebGear.Core.Trait.Path

    No documentation available.

Page 652 of many | Previous | Next