DecodeInt64 decodes a int64 value.
(b []byte)
| 2170 | |
| 2171 | // DecodeInt64 decodes a int64 value. |
| 2172 | func (BinaryEncoding) DecodeInt64(b []byte) int64 { |
| 2173 | return int64(binary.BigEndian.Uint64(b)) |
| 2174 | } |
| 2175 | |
| 2176 | // DecodeDouble decodes a double value. |
| 2177 | func (BinaryEncoding) DecodeDouble(b []byte) float64 { |