Boolean encodes the value v as a query string value
(v bool)
| 75 | |
| 76 | // Boolean encodes the value v as a query string value |
| 77 | func (h HeaderValue) Boolean(v bool) { |
| 78 | h.modifyHeader(strconv.FormatBool(v)) |
| 79 | } |
| 80 | |
| 81 | // Float encodes the value v as a query string value |
| 82 | func (h HeaderValue) Float(v float32) { |
nothing calls this directly
no test coverage detected