package
1.0.2
Repository: https://github.com/konekod/go-querymap.git
Documentation: pkg.go.dev

# Functions

FromURL parses the *url.URL object and returns a QueryMap representing all its query parameters as a nested structure.
FromURLStringToStruct is an additional wrapper that parses the URL string, and then calls FromURLToStruct.
FromURLToStruct is a convenient function that combines FromURL and ToStruct.
FromValues parses the url.Values object and returns a QueryMap representing all its query parameters as a nested structure.
FromValuesToStruct is a convenient function that combines FromValues and ToStruct.
NormalizeSlicesNumbersIndexes recursively checks whether the value is a set of numeric keys, and if so, converts it to a slice (anyList).
ToStruct converts QueryMap into a structure of type T using mapstructure.

# Type aliases

QueryMap is a map storing key-values from query-parameters.