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 extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
btree extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
bench.rs extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
binary_heap.rs extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
enum_set.rs enable enum_set tests 2015-03-16 21:57:42 -05:00
fmt.rs extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
lib.rs enable enum_set tests 2015-03-16 21:57:42 -05:00
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 extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
string.rs extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
vec.rs extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00
vec_deque.rs std: Stabilize IteratorExt::cloned 2015-03-17 18:05:58 -07:00
vec_map.rs extract libcollections tests into libcollectionstest 2015-03-16 21:57:42 -05:00