BigInteger encodes the value v as a query string value
(v *big.Int)
| 103 | |
| 104 | // BigInteger encodes the value v as a query string value |
| 105 | func (h HeaderValue) BigInteger(v *big.Int) { |
| 106 | h.modifyHeader(v.String()) |
| 107 | } |
| 108 | |
| 109 | // BigDecimal encodes the value v as a query string value |
| 110 | func (h HeaderValue) BigDecimal(v *big.Float) { |
nothing calls this directly
no test coverage detected