(opklvl uint64)
| 541 | } |
| 542 | |
| 543 | func 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 |
no outgoing calls
no test coverage detected
searching dependent graphs…