InnerList represents an inner list as defined in https://httpwg.org/specs/rfc9651.html#inner-list.
| 11 | // InnerList represents an inner list as defined in |
| 12 | // https://httpwg.org/specs/rfc9651.html#inner-list. |
| 13 | type InnerList struct { |
| 14 | Items []Item |
| 15 | Params *Params |
| 16 | } |
| 17 | |
| 18 | func (il InnerList) member() { |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected