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

Function DecodeUntaggedIntValue

pkg/util/encoding/encoding.go:2923–2926  ·  view source on GitHub ↗

DecodeUntaggedIntValue decodes a value encoded by EncodeUntaggedIntValue.

(b []byte)

Source from the content-addressed store, hash-verified

2921
2922// DecodeUntaggedIntValue decodes a value encoded by EncodeUntaggedIntValue.
2923func DecodeUntaggedIntValue(b []byte) (remaining []byte, i int64, err error) {
2924 b, _, i, err = DecodeNonsortingStdlibVarint(b)
2925 return b, i, err
2926}
2927
2928// DecodeFloatValue decodes a value encoded by EncodeFloatValue.
2929func DecodeFloatValue(b []byte) (remaining []byte, f float64, err error) {

Callers 1

DecodeIntValueFunction · 0.85

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…