Byte encodes the value v as a query string value
(v int8)
| 55 | |
| 56 | // Byte encodes the value v as a query string value |
| 57 | func (h HeaderValue) Byte(v int8) { |
| 58 | h.Long(int64(v)) |
| 59 | } |
| 60 | |
| 61 | // Short encodes the value v as a query string value |
| 62 | func (h HeaderValue) Short(v int16) { |