Encodes the provided key to the provided buffer
| 315 | |
| 316 | // Encodes the provided key to the provided buffer |
| 317 | void Encode(const void* key, Buffer* dst) const { |
| 318 | encode_func_(key, dst); |
| 319 | } |
| 320 | |
| 321 | // Special encoding for composite keys. |
| 322 | void Encode(const void* key, bool is_last, Buffer* dst) const { |
no outgoing calls