# sled-search [](https://travis-ci.org/mitchmindtree/sled-search) [](https://crates.io/crates/sled-search) [](https://github.com/mitchmindtree/sled-search/blob/master/LICENSE-MIT) [](https://docs.rs/sled-search/)
Utility functions for searching a [`sled::Tree`](https://docs.rs/sled/latest).
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.