Boolean encodes v as a query string value
(v bool)
| 41 | |
| 42 | // Boolean encodes v as a query string value |
| 43 | func (qv QueryValue) Boolean(v bool) { |
| 44 | qv.updateKey(strconv.FormatBool(v)) |
| 45 | } |
| 46 | |
| 47 | // String encodes v as a query string value |
| 48 | func (qv QueryValue) String(v string) { |