MCPcopy Create free account
hub / github.com/cockroachdb/cockroachdb-parser / DecodeUint64Descending

Function DecodeUint64Descending

pkg/util/encoding/encoding.go:288–291  ·  view source on GitHub ↗

DecodeUint64Descending decodes a uint64 value which was encoded using EncodeUint64Descending.

(b []byte)

Source from the content-addressed store, hash-verified

286// DecodeUint64Descending decodes a uint64 value which was encoded
287// using EncodeUint64Descending.
288func DecodeUint64Descending(b []byte) ([]byte, uint64, error) {
289 leftover, v, err := DecodeUint64Ascending(b)
290 return leftover, ^v, err
291}
292
293// MaxVarintLen is the maximum length of a value encoded using any of:
294// - EncodeVarintAscending

Callers 1

DecodeGeoDescendingFunction · 0.85

Calls 1

DecodeUint64AscendingFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…