http-link-header-0.1.0: A parser and writer for the HTTP Link header as specified in RFC 5988 "Web Linking".

Safe HaskellSafe
LanguageHaskell2010

Network.HTTP.Link.Types

Description

The data type definitions for the HTTP Link header.

Synopsis

Documentation

data LinkParam Source

The link attribute key.

data Link Source

A single link.

Constructors

Link Text [(LinkParam, Text)] 

href :: Link -> Text Source

Extracts the URI from the link.

linkParams :: Link -> [(LinkParam, Text)] Source

Extracts the parameters from the link.