Params are an ordered map of key-value pairs that are associated with an item or an inner list. See https://httpwg.org/specs/rfc9651.html#param.
| 9 | // |
| 10 | // See https://httpwg.org/specs/rfc9651.html#param. |
| 11 | type Params struct { |
| 12 | names []string |
| 13 | values map[string]interface{} |
| 14 | } |
| 15 | |
| 16 | // ErrInvalidParameterFormat is returned when the format of a parameter is invalid. |
| 17 | var ErrInvalidParameterFormat = errors.New("invalid parameter format") |
nothing calls this directly
no outgoing calls
no test coverage detected