# Functions
Parse parses rawurl into a URL structure.
ParseQuery parses the URL-encoded query string and returns a map listing the values specified for each key.
ParseRequestURI parses rawurl into a URL structure.
PathEscape escapes the string so it can be safely placed inside a URL path segment.
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.