DecodeUint32Descending decodes a uint32 value which was encoded using EncodeUint32Descending.
(b []byte)
| 251 | // DecodeUint32Descending decodes a uint32 value which was encoded |
| 252 | // using EncodeUint32Descending. |
| 253 | func DecodeUint32Descending(b []byte) ([]byte, uint32, error) { |
| 254 | leftover, v, err := DecodeUint32Ascending(b) |
| 255 | return leftover, ^v, err |
| 256 | } |
| 257 | |
| 258 | const uint64AscendingEncodedLength = 8 |
| 259 |
nothing calls this directly
no test coverage detected
searching dependent graphs…