rust/src/libcollectionstest
Alex Crichton 7c333e99bf std: Stabilize IteratorExt::cloned
This commit stabilizes the `cloned` iterator after tweaking the signature to
require that the iterator is over `&T` instead of `U: Deref<T>`. This method has
had time to bake for awhile now and it's not clear whether the `Deref` bound is
worth it. Additionally, there aren't clear conventions on when to bound and/or
implement the `Deref` trait, so for now the conservative route is to require
references instead of `U: Deref<T>`.

To change this signature to using `Deref` would technically be a
backwards-incompatible change, but it is doubtful that any code will actually
break in practice.
2015-03-17 18:05:58 -07:00
..
bit
btree
bench.rs
binary_heap.rs
enum_set.rs
fmt.rs
lib.rs
linked_list.rs move some tests back to libcollections 2015-03-16 21:57:42 -05:00
slice.rs move some tests back to libcollections 2015-03-16 21:57:42 -05:00
str.rs
string.rs
vec_deque.rs std: Stabilize IteratorExt::cloned 2015-03-17 18:05:58 -07:00
vec_map.rs
vec.rs