use std::borrow::Cow; use sweep_bptree::BPlusTreeSet; fn main() { let mut set = BPlusTreeSet::>::new(); set.insert("hello".into()); set.insert("world".into()); assert!(set.contains("hello")); }