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

Function DecodeUint32Descending

pkg/util/encoding/encoding.go:175–178  ·  view source on GitHub ↗

DecodeUint32Descending decodes a uint32 value which was encoded using EncodeUint32Descending.

(b []byte)

Source from the content-addressed store, hash-verified

173// DecodeUint32Descending decodes a uint32 value which was encoded
174// using EncodeUint32Descending.
175func DecodeUint32Descending(b []byte) ([]byte, uint32, error) {
176 leftover, v, err := DecodeUint32Ascending(b)
177 return leftover, ^v, err
178}
179
180const uint64AscendingEncodedLength = 8
181

Callers

nothing calls this directly

Calls 1

DecodeUint32AscendingFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…