(key string)
| 28 | } |
| 29 | |
| 30 | func (q *Query) Has(key string) bool { |
| 31 | if _, has := q.list[key]; has { |
| 32 | return true |
| 33 | } |
| 34 | return false |
| 35 | } |
| 36 | |
| 37 | func (q *Query) Value(key string) string { |
| 38 | return q.list[key][0] |
no outgoing calls
no test coverage detected