GetInt64 gets the int64 value.
()
| 198 | |
| 199 | // GetInt64 gets the int64 value. |
| 200 | func (bj BinaryJSON) GetInt64() int64 { |
| 201 | return int64(jsonEndian.Uint64(bj.Value)) |
| 202 | } |
| 203 | |
| 204 | // GetUint64 gets the uint64 value. |
| 205 | func (bj BinaryJSON) GetUint64() uint64 { |
no outgoing calls
no test coverage detected