DecodeUint32Descending decodes a uint32 value which was encoded using EncodeUint32Descending.
(b []byte)
| 173 | // DecodeUint32Descending decodes a uint32 value which was encoded |
| 174 | // using EncodeUint32Descending. |
| 175 | func DecodeUint32Descending(b []byte) ([]byte, uint32, error) { |
| 176 | leftover, v, err := DecodeUint32Ascending(b) |
| 177 | return leftover, ^v, err |
| 178 | } |
| 179 | |
| 180 | const uint64AscendingEncodedLength = 8 |
| 181 |
nothing calls this directly
no test coverage detected
searching dependent graphs…