Dictionary is an ordered map of name-value pairs. See https://httpwg.org/specs/rfc9651.html#dictionary Values can be: * Item (Section 3.3.) * Inner List (Section 3.1.1.)
| 11 | // * Item (Section 3.3.) |
| 12 | // * Inner List (Section 3.1.1.) |
| 13 | type Dictionary struct { |
| 14 | names []string |
| 15 | values map[string]Member |
| 16 | } |
| 17 | |
| 18 | // ErrInvalidDictionaryFormat is returned when a dictionary value is invalid. |
| 19 | var ErrInvalidDictionaryFormat = errors.New("invalid dictionary format") |
nothing calls this directly
no outgoing calls
no test coverage detected