Del deletes a key-val entry from the Collection. The key must be unique (not repeated) within the Batch. Del copies the key bytes into the Batch, so the memory bytes of the key may be reused by the caller. Del() on a non-existent key results in a nil error.
(key []byte)
| 332 | // reused by the caller. Del() on a non-existent key results in a |
| 333 | // nil error. |
| 334 | Del(key []byte) error |
| 335 | |
| 336 | // Merge creates or updates a key-val entry in the Collection via |
| 337 | // the MergeOperator defined in the CollectionOptions. The key |
no outgoing calls