sled-search 0.2.0

Utility functions for searching a `sled::Tree`
Documentation

sled-search Build Status Crates.io Crates.io docs.rs

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.