AddQuery returns a QueryValue used for appending the given query key
(key string)
| 113 | |
| 114 | // AddQuery returns a QueryValue used for appending the given query key |
| 115 | func (e *Encoder) AddQuery(key string) QueryValue { |
| 116 | return NewQueryValue(e.query, key, true) |
| 117 | } |
| 118 | |
| 119 | // HasQuery returns if a query with the key specified exists with one or |
| 120 | // more values. |