Crates.io | sled-search |
lib.rs | sled-search |
version | 0.2.0 |
source | src |
created_at | 2018-09-28 00:18:19.026273 |
updated_at | 2018-10-02 09:19:46.567799 |
description | Utility functions for searching a `sled::Tree` |
homepage | https://github.com/mitchmindtree/sled-search |
repository | https://github.com/mitchmindtree/sled-search.git |
max_upload_size | |
id | 86934 |
size | 10,627 |
Utility functions for searching a sled::Tree
.
Includes:
search
- allows for searching the sled::Tree
key space using a guiding
function.max
- finds the greatest entry in the sled::Tree
(uses search
internally).pred
- finds the greatest key preceding the given key (uses search
internally).pred_incl
- a version of the pred
fn that is inclusive of the given key.