type net/url.Values

31 uses

	net/url (current package)
		url.go#L916: type Values map[string][]string
		url.go#L922: func (v Values) Get(key string) string {
		url.go#L932: func (v Values) Set(key, value string) {
		url.go#L938: func (v Values) Add(key, value string) {
		url.go#L943: func (v Values) Del(key string) {
		url.go#L948: func (v Values) Has(key string) bool {
		url.go#L963: func ParseQuery(query string) (Values, error) {
		url.go#L964: 	m := make(Values)
		url.go#L969: func parseQuery(m Values, query string) (err error) {
		url.go#L1002: func (v Values) Encode() string {
		url.go#L1158: func (u *URL) Query() Values {

	net/http
		client.go#L882: func PostForm(url string, data url.Values) (resp *Response, err error) {
		client.go#L900: func (c *Client) PostForm(url string, data url.Values) (resp *Response, err error) {
		clone.go#L23: func cloneURLValues(v url.Values) url.Values {
		clone.go#L29: 	return url.Values(Header(v).Clone())
		request.go#L250: 	Form url.Values
		request.go#L257: 	PostForm url.Values
		request.go#L1266: func copyValues(dst, src url.Values) {
		request.go#L1272: func parsePostForm(r *Request) (vs url.Values, err error) {
		request.go#L1343: 			r.PostForm = make(url.Values)
		request.go#L1348: 			r.Form = make(url.Values)
		request.go#L1351: 		var newValues url.Values
		request.go#L1360: 			newValues = make(url.Values)
		request.go#L1404: 		r.PostForm = make(url.Values)

	github.com/oapi-codegen/runtime
		bindform.go#L91: func MarshalForm(ptr interface{}, encodings map[string]RequestBodyEncoding) (url.Values, error) {
		bindform.go#L97: 	result := make(url.Values)
		bindform.go#L289: func marshalFormImpl(v reflect.Value, result url.Values, name string) {
		bindparam.go#L310: 	queryParams url.Values, dest interface{}) error {
		bindparam.go#L483: func bindParamsToExplodedObject(paramName string, values url.Values, dest interface{}) (bool, error) {
		deepobject.go#L126: func UnmarshalDeepObject(dst interface{}, paramName string, params url.Values) error {