EncodeUint64Descending encodes the uint64 value so that it sorts in reverse order, from largest to smallest.
(b []byte, v uint64)
| 191 | // EncodeUint64Descending encodes the uint64 value so that it sorts in |
| 192 | // reverse order, from largest to smallest. |
| 193 | func EncodeUint64Descending(b []byte, v uint64) []byte { |
| 194 | return EncodeUint64Ascending(b, ^v) |
| 195 | } |
| 196 | |
| 197 | // DecodeUint64Ascending decodes a uint64 from the input buffer, treating |
| 198 | // the input as a big-endian 8 byte uint64 representation. The remainder |
nothing calls this directly
no test coverage detected
searching dependent graphs…