GetFloat64 gets the float64 value.
()
| 208 | |
| 209 | // GetFloat64 gets the float64 value. |
| 210 | func (bj BinaryJSON) GetFloat64() float64 { |
| 211 | return math.Float64frombits(bj.GetUint64()) |
| 212 | } |
| 213 | |
| 214 | // GetString gets the string value. |
| 215 | func (bj BinaryJSON) GetString() []byte { |
no test coverage detected