Find retrieves the record with the given key. Returns the record and true if found, nil and false otherwise.
(key []byte)
| 72 | // Find retrieves the record with the given key. |
| 73 | // Returns the record and true if found, nil and false otherwise. |
| 74 | Find(key []byte) (*core.Record, bool) |
| 75 | |
| 76 | // Min returns the item with the smallest key (head of the list). |
| 77 | // Returns the item and true if the list is not empty, nil and false otherwise. |
no outgoing calls