package
0.0.0-20241115082555-91616abce05b
Repository: https://github.com/tencentcodedog/linux-go-1.12.6.git
Documentation: pkg.go.dev

# 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.

# Structs

Error reports an error and the operation and URL that caused it.
A URL represents a parsed URL (technically, a URI reference).
The Userinfo type is an immutable encapsulation of username and password details for a URL.

# Type aliases

No description provided by the author
No description provided by the author
Values maps a string key to a list of values.