Long encodes v as a query string value
(v int64)
| 66 | |
| 67 | // Long encodes v as a query string value |
| 68 | func (qv QueryValue) Long(v int64) { |
| 69 | qv.updateKey(strconv.FormatInt(v, 10)) |
| 70 | } |
| 71 | |
| 72 | // Float encodes v as a query string value |
| 73 | func (qv QueryValue) Float(v float32) { |
no test coverage detected