| 147 | // cycleOffset returns the node number at which clientId's mini-cycle begins |
| 148 | int cycleOffset(int clientId) { return clientId * cycleSize(0); } |
| 149 | int beginKey(int clientId) { return cycleOffset(clientId); } |
| 150 | int endKey(int clientId) { return cycleSize(clientId) + cycleOffset(clientId); } |
| 151 | |
| 152 | Standalone<KeyValueRef> operator()(int n) { |
no outgoing calls
no test coverage detected