sled-search 0.2.0

Utility functions for searching a `sled::Tree`
Documentation
  • Coverage
  • 80%
    4 out of 5 items documented0 out of 4 items with examples
  • Size
  • Source code size: 16.48 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.07 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 30s Average build duration of successful builds.
  • all releases: 30s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • mitchmindtree/sled-search
    5 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mitchmindtree

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.