# Functions
JoinPath returns a [URL] string with the provided path elements joined to the existing path of base and the resulting path cleaned of any ./ or ../ elements.
Parse parses a raw url into a [URL] structure.
ParseQuery parses the URL-encoded query string and returns a map listing the values specified for each key.
ParseRequestURI parses a raw url into a [URL] structure.
PathEscape escapes the string so it can be safely placed inside a [URL] path segment, replacing special characters (including /) with %XX sequences as needed.
PathUnescape does the inverse transformation of [PathEscape], converting each 3-byte encoded substring of the form "%AB" into the hex-decoded byte 0xAB.
QueryEscape escapes the string so it can be safely placed inside a [URL] query.
QueryUnescape does the inverse transformation of [QueryEscape], converting each 3-byte encoded substring of the form "%AB" into the hex-decoded byte 0xAB.
User returns a [Userinfo] containing the provided username and no password set.
UserPassword returns a [Userinfo] containing the provided username and password.
# Type aliases
No description provided by the author
No description provided by the author
Values maps a string key to a list of values.