rust/library/alloc/benches
The8472 60a900ee10 remove InPlaceIterable marker from Peekable due to unsoundness
The unsoundness is not in Peekable per se, it rather is due to the
interaction between Peekable being able to hold an extra item
and vec::IntoIter's clone implementation shortening the allocation.

An alternative solution would be to change IntoIter's clone implementation
to keep enough spare capacity available.
2021-05-19 01:41:09 +02:00
..
btree BTreeMap: correct tests for alternative choices of B 2021-02-21 19:06:46 +01:00
binary_heap.rs Added benchmarks for BinaryHeap 2020-09-20 01:12:02 +02:00
lib.rs Vec::dedup optimization - add benches 2021-03-16 14:41:26 +01:00
linked_list.rs
slice.rs
str.rs
string.rs
vec.rs remove InPlaceIterable marker from Peekable due to unsoundness 2021-05-19 01:41:09 +02:00
vec_deque.rs
vec_deque_append.rs