Files
rust/library/alloc/src
Jubilee 966b8930e3 Rollup merge of #133004 - cuviper:unrecover-btree, r=ibraheemdev
btree: simplify the backdoor between set and map

The internal `btree::Recover` trait acted as a private API between
`BTreeSet` and `BTreeMap`, but we can use `pub(_)` restrictions these
days, and some of the methods don't need special handling anymore.

* `BTreeSet::get` can use `BTreeMap::get_key_value`
* `BTreeSet::take` can use `BTreeMap::remove_entry`
* `BTreeSet::replace` does need help, but this now uses a `pub(super)`
  method on `BTreeMap` instead of the trait.
* `btree::Recover` is now removed.
2024-11-13 22:43:38 -08:00
..
2024-07-29 08:26:52 +10:00
2024-08-09 20:06:26 -04:00
2024-07-29 08:26:52 +10:00
2024-11-12 15:08:41 -06:00
2024-11-02 20:49:24 +01:00
2024-10-22 12:55:16 +00:00
2024-07-06 14:24:20 +02:00
2024-11-12 15:08:41 -06:00
2024-11-06 18:54:50 +00:00
2024-11-12 15:08:41 -06:00
2024-07-29 08:26:52 +10:00