(key []byte)
| 15 | // Deleter wraps the database delete operation supported by both batches and regular databases. |
| 16 | type Deleter interface { |
| 17 | Delete(key []byte) error |
| 18 | } |
| 19 | |
| 20 | // Database wraps all database operations. All methods are safe for concurrent use. |
no outgoing calls