Long encodes the value v as the header string value
(v int64)
| 70 | |
| 71 | // Long encodes the value v as the header string value |
| 72 | func (h HeaderValue) Long(v int64) { |
| 73 | h.modifyHeader(strconv.FormatInt(v, 10)) |
| 74 | } |
| 75 | |
| 76 | // Boolean encodes the value v as a query string value |
| 77 | func (h HeaderValue) Boolean(v bool) { |
no test coverage detected