We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c430bf commit eaa0cd1Copy full SHA for eaa0cd1
module/core/collection_tools/tests/inc/bmap.rs
@@ -68,7 +68,7 @@ fn iters()
68
impl IntoIterator for MyContainer
69
{
70
type Item = ( i32, i32 );
71
- type IntoIter = the_module::bmap::IntoIter< i32, i32 >;
+ type IntoIter = the_module::btree_map::IntoIter< i32, i32 >;
72
73
fn into_iter( self ) -> Self::IntoIter
74
@@ -79,7 +79,7 @@ fn iters()
79
impl< 'a > IntoIterator for &'a MyContainer
80
81
type Item = ( &'a i32, &'a i32 );
82
- type IntoIter = the_module::bmap::Iter< 'a, i32, i32 >;
+ type IntoIter = the_module::btree_map::Iter< 'a, i32, i32 >;
83
84
85
module/core/collection_tools/tests/inc/bset.rs
@@ -67,7 +67,7 @@ fn iters()
67
type Item = i32;
- type IntoIter = the_module::bset::IntoIter< i32 >;
+ type IntoIter = the_module::btree_set::IntoIter< i32 >;
@@ -78,7 +78,7 @@ fn iters()
78
type Item = &'a i32;
- type IntoIter = the_module::bset::Iter< 'a, i32 >;
+ type IntoIter = the_module::btree_set::Iter< 'a, i32 >;
module/core/collection_tools/tests/inc/deque.rs
@@ -66,7 +66,7 @@ fn iters()
66
- type IntoIter = the_module::deque::IntoIter< i32 >;
+ type IntoIter = the_module::vec_deque::IntoIter< i32 >;
@@ -77,7 +77,7 @@ fn iters()
77
- type IntoIter = the_module::deque::Iter< 'a, i32 >;
+ type IntoIter = the_module::vec_deque::Iter< 'a, i32 >;
@@ -88,7 +88,7 @@ fn iters()
88
impl< 'a > IntoIterator for &'a mut MyContainer
89
90
type Item = &'a mut i32;
91
- type IntoIter = the_module::deque::IterMut< 'a, i32 >;
+ type IntoIter = the_module::vec_deque::IterMut< 'a, i32 >;
92
93
94
module/core/collection_tools/tests/inc/heap.rs
@@ -62,7 +62,7 @@ fn iters()
62
63
64
65
- type IntoIter = the_module::heap::IntoIter< i32 >;
+ type IntoIter = the_module::binary_heap::IntoIter< i32 >;
@@ -73,7 +73,7 @@ fn iters()
75
76
- type IntoIter = the_module::heap::Iter< 'a, i32 >;
+ type IntoIter = the_module::binary_heap::Iter< 'a, i32 >;
module/core/collection_tools/tests/inc/hmap.rs
- type IntoIter = the_module::hmap::IntoIter< i32, i32 >;
+ type IntoIter = the_module::hash_map::IntoIter< i32, i32 >;
- type IntoIter = the_module::hmap::Iter< 'a, i32, i32 >;
+ type IntoIter = the_module::hash_map::Iter< 'a, i32, i32 >;
@@ -99,7 +99,7 @@ fn iters()
99
100
101
type Item = ( &'a i32, &'a mut i32 );
102
- type IntoIter = the_module::hmap::IterMut< 'a, i32, i32 >;
+ type IntoIter = the_module::hash_map::IterMut< 'a, i32, i32 >;
103
104
105
module/core/collection_tools/tests/inc/hset.rs
@@ -74,7 +74,7 @@ fn iters()
- type IntoIter = the_module::hset::IntoIter< i32 >;
+ type IntoIter = the_module::hash_set::IntoIter< i32 >;
@@ -85,7 +85,7 @@ fn iters()
86
87
- type IntoIter = the_module::hset::Iter< 'a, i32 >;
+ type IntoIter = the_module::hash_set::Iter< 'a, i32 >;
module/core/collection_tools/tests/inc/llist.rs
- type IntoIter = the_module::llist::IntoIter< i32 >;
+ type IntoIter = the_module::linked_list::IntoIter< i32 >;
- type IntoIter = the_module::llist::Iter< 'a, i32 >;
+ type IntoIter = the_module::linked_list::Iter< 'a, i32 >;
@@ -89,7 +89,7 @@ fn iters()
- type IntoIter = the_module::llist::IterMut< 'a, i32 >;
+ type IntoIter = the_module::linked_list::IterMut< 'a, i32 >;
95
module/core/collection_tools/tests/inc/vec.rs
@@ -86,7 +86,7 @@ fn iters()
- type IntoIter = the_module::vec::IntoIter< i32 >;
+ type IntoIter = the_module::vector::IntoIter< i32 >;
// qqq : should work -- works
@@ -98,7 +98,7 @@ fn iters()
98
- type IntoIter = the_module::vec::Iter< 'a, i32 >;
+ type IntoIter = the_module::vector::Iter< 'a, i32 >;
@@ -109,7 +109,7 @@ fn iters()
109
110
111
112
- type IntoIter = the_module::vec::IterMut< 'a, i32 >;
+ type IntoIter = the_module::vector::IterMut< 'a, i32 >;
113
114
115
0 commit comments