rust/library/alloc
bors 0b96f60c07 Auto merge of #79245 - ssomers:btree_curb_ord_bound, r=dtolnay
BTree: remove Ord bound where it is absent elsewhere

Some btree methods don't really need an Ord bound and don't have one, while some methods that more obviously don't need it, do have one.

An example of the former is `iter`, even though it explicitly exposes the work of the Ord implementation (["sorted by key"](https://doc.rust-lang.org/std/collections/struct.BTreeMap.html#method.iter) - but I'm not suggesting it should have the Ord bound). An example of the latter is `new`, which doesn't involve any keys whatsoever.
2021-02-08 07:56:04 +00:00
..
benches Reorder benches const variable 2020-09-29 21:39:24 +08:00
src Auto merge of #79245 - ssomers:btree_curb_ord_bound, r=dtolnay 2021-02-08 07:56:04 +00:00
tests Revert stabilizing integer::BITS. 2021-02-03 22:23:58 +01:00
Cargo.toml Update compiler_builtins to 0.1.39 2021-01-07 16:16:36 +09:00