Module

Data.URI.RelativePart

Package
purescript-uri
Repository
slamdata/purescript-uri

#RelativePart Source

data RelativePart

The "relative part" of a relative reference.

Constructors

Instances

Re-exports from Data.URI.Authority

#UserInfo Source

newtype UserInfo

The user info part of an Authority. For example: user, foo:bar.

Constructors

Instances

#Port Source

newtype Port

A port number.

Constructors

Instances

#Authority Source

data Authority

The authority part of a URI. For example: purescript.org, localhost:3000, user@example.net

Constructors

Instances

Re-exports from Data.URI.Path

#URIPathRel Source

type URIPathRel = URIPath Rel Unsandboxed

The path part for a relative reference.

#URIPathAbs Source

type URIPathAbs = URIPath Abs Sandboxed

The path part for a generic or absolute URI.

#URIPath Source

type URIPath a s = Either (Path a Dir s) (Path a File s)

A general URI path, can be used to represent relative or absolute paths that are sandboxed or unsandboxed.