MCPcopy Create free account
hub / github.com/couchbase/moss / decodeOpKeyLenValLen

Function decodeOpKeyLenValLen

segment.go:543–548  ·  view source on GitHub ↗
(opklvl uint64)

Source from the content-addressed store, hash-verified

541}
542
543func decodeOpKeyLenValLen(opklvl uint64) (uint64, int, int) {
544 operation := maskOperation & opklvl
545 keyLen := int((maskKeyLength & opklvl) >> 32)
546 valLen := int(maskValLength & opklvl)
547 return operation, keyLen, valLen
548}
549
550// ------------------------------------------------------
551// readyDeferredSort() will create a ticket for the future sorter and

Callers 3

getOperationKeyValMethod · 0.85
ValidMethod · 0.85
updateStatsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…