about summary refs log tree commit diff
path: root/library/alloc/src/collections/btree/set/entry.rs
AgeCommit message (Collapse)AuthorLines
2024-11-27Add a tracking issue for `btree_set_entry`Josh Stone-16/+16
2024-11-27Add `BTreeSet` entry APIs to match `HashSet`Josh Stone-0/+388
* `fn get_or_insert(&mut self, value: T) -> &T` * `fn get_or_insert_with<Q: ?Sized, F>(&mut self, value: &Q, f: F) -> &T` * `fn entry(&mut self, value: T) -> Entry<'_, T, A>` (+ `Entry` APIs)