Short encodes the value v as a query string value
(v int16)
| 60 | |
| 61 | // Short encodes the value v as a query string value |
| 62 | func (h HeaderValue) Short(v int16) { |
| 63 | h.Long(int64(v)) |
| 64 | } |
| 65 | |
| 66 | // Integer encodes the value v as the header string value |
| 67 | func (h HeaderValue) Integer(v int32) { |