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

Function DecodeUint64Descending

pkg/util/encoding/encoding.go:210–213  ·  view source on GitHub ↗

DecodeUint64Descending decodes a uint64 value which was encoded using EncodeUint64Descending.

(b []byte)

Source from the content-addressed store, hash-verified

208// DecodeUint64Descending decodes a uint64 value which was encoded
209// using EncodeUint64Descending.
210func DecodeUint64Descending(b []byte) ([]byte, uint64, error) {
211 leftover, v, err := DecodeUint64Ascending(b)
212 return leftover, ^v, err
213}
214
215const (
216 maxVarintSize = 9

Callers

nothing calls this directly

Calls 1

DecodeUint64AscendingFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…