Integer encodes the value v as the header string value
(v int32)
| 65 | |
| 66 | // Integer encodes the value v as the header string value |
| 67 | func (h HeaderValue) Integer(v int32) { |
| 68 | h.Long(int64(v)) |
| 69 | } |
| 70 | |
| 71 | // Long encodes the value v as the header string value |
| 72 | func (h HeaderValue) Long(v int64) { |