Float encodes the value v as a query string value
(v float32)
| 80 | |
| 81 | // Float encodes the value v as a query string value |
| 82 | func (h HeaderValue) Float(v float32) { |
| 83 | h.float(float64(v), 32) |
| 84 | } |
| 85 | |
| 86 | // Double encodes the value v as a query string value |
| 87 | func (h HeaderValue) Double(v float64) { |