Skip to content

Commit eaa0cd1

Browse files
committed
test_tools : rid off cyclic dependcy wip
1 parent 7c430bf commit eaa0cd1

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

module/core/collection_tools/tests/inc/bmap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn iters()
6868
impl IntoIterator for MyContainer
6969
{
7070
type Item = ( i32, i32 );
71-
type IntoIter = the_module::bmap::IntoIter< i32, i32 >;
71+
type IntoIter = the_module::btree_map::IntoIter< i32, i32 >;
7272

7373
fn into_iter( self ) -> Self::IntoIter
7474
{
@@ -79,7 +79,7 @@ fn iters()
7979
impl< 'a > IntoIterator for &'a MyContainer
8080
{
8181
type Item = ( &'a i32, &'a i32 );
82-
type IntoIter = the_module::bmap::Iter< 'a, i32, i32 >;
82+
type IntoIter = the_module::btree_map::Iter< 'a, i32, i32 >;
8383

8484
fn into_iter( self ) -> Self::IntoIter
8585
{

module/core/collection_tools/tests/inc/bset.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ fn iters()
6767
impl IntoIterator for MyContainer
6868
{
6969
type Item = i32;
70-
type IntoIter = the_module::bset::IntoIter< i32 >;
70+
type IntoIter = the_module::btree_set::IntoIter< i32 >;
7171

7272
fn into_iter( self ) -> Self::IntoIter
7373
{
@@ -78,7 +78,7 @@ fn iters()
7878
impl< 'a > IntoIterator for &'a MyContainer
7979
{
8080
type Item = &'a i32;
81-
type IntoIter = the_module::bset::Iter< 'a, i32 >;
81+
type IntoIter = the_module::btree_set::Iter< 'a, i32 >;
8282

8383
fn into_iter( self ) -> Self::IntoIter
8484
{

module/core/collection_tools/tests/inc/deque.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ fn iters()
6666
impl IntoIterator for MyContainer
6767
{
6868
type Item = i32;
69-
type IntoIter = the_module::deque::IntoIter< i32 >;
69+
type IntoIter = the_module::vec_deque::IntoIter< i32 >;
7070

7171
fn into_iter( self ) -> Self::IntoIter
7272
{
@@ -77,7 +77,7 @@ fn iters()
7777
impl< 'a > IntoIterator for &'a MyContainer
7878
{
7979
type Item = &'a i32;
80-
type IntoIter = the_module::deque::Iter< 'a, i32 >;
80+
type IntoIter = the_module::vec_deque::Iter< 'a, i32 >;
8181

8282
fn into_iter( self ) -> Self::IntoIter
8383
{
@@ -88,7 +88,7 @@ fn iters()
8888
impl< 'a > IntoIterator for &'a mut MyContainer
8989
{
9090
type Item = &'a mut i32;
91-
type IntoIter = the_module::deque::IterMut< 'a, i32 >;
91+
type IntoIter = the_module::vec_deque::IterMut< 'a, i32 >;
9292

9393
fn into_iter( self ) -> Self::IntoIter
9494
{

module/core/collection_tools/tests/inc/heap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn iters()
6262
impl IntoIterator for MyContainer
6363
{
6464
type Item = i32;
65-
type IntoIter = the_module::heap::IntoIter< i32 >;
65+
type IntoIter = the_module::binary_heap::IntoIter< i32 >;
6666

6767
fn into_iter( self ) -> Self::IntoIter
6868
{
@@ -73,7 +73,7 @@ fn iters()
7373
impl< 'a > IntoIterator for &'a MyContainer
7474
{
7575
type Item = &'a i32;
76-
type IntoIter = the_module::heap::Iter< 'a, i32 >;
76+
type IntoIter = the_module::binary_heap::Iter< 'a, i32 >;
7777

7878
fn into_iter( self ) -> Self::IntoIter
7979
{

module/core/collection_tools/tests/inc/hmap.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn iters()
7777
impl IntoIterator for MyContainer
7878
{
7979
type Item = ( i32, i32 );
80-
type IntoIter = the_module::hmap::IntoIter< i32, i32 >;
80+
type IntoIter = the_module::hash_map::IntoIter< i32, i32 >;
8181

8282
fn into_iter( self ) -> Self::IntoIter
8383
{
@@ -88,7 +88,7 @@ fn iters()
8888
impl< 'a > IntoIterator for &'a MyContainer
8989
{
9090
type Item = ( &'a i32, &'a i32 );
91-
type IntoIter = the_module::hmap::Iter< 'a, i32, i32 >;
91+
type IntoIter = the_module::hash_map::Iter< 'a, i32, i32 >;
9292

9393
fn into_iter( self ) -> Self::IntoIter
9494
{
@@ -99,7 +99,7 @@ fn iters()
9999
impl< 'a > IntoIterator for &'a mut MyContainer
100100
{
101101
type Item = ( &'a i32, &'a mut i32 );
102-
type IntoIter = the_module::hmap::IterMut< 'a, i32, i32 >;
102+
type IntoIter = the_module::hash_map::IterMut< 'a, i32, i32 >;
103103

104104
fn into_iter( self ) -> Self::IntoIter
105105
{

module/core/collection_tools/tests/inc/hset.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ fn iters()
7474
impl IntoIterator for MyContainer
7575
{
7676
type Item = i32;
77-
type IntoIter = the_module::hset::IntoIter< i32 >;
77+
type IntoIter = the_module::hash_set::IntoIter< i32 >;
7878

7979
fn into_iter( self ) -> Self::IntoIter
8080
{
@@ -85,7 +85,7 @@ fn iters()
8585
impl< 'a > IntoIterator for &'a MyContainer
8686
{
8787
type Item = &'a i32;
88-
type IntoIter = the_module::hset::Iter< 'a, i32 >;
88+
type IntoIter = the_module::hash_set::Iter< 'a, i32 >;
8989

9090
fn into_iter( self ) -> Self::IntoIter
9191
{

module/core/collection_tools/tests/inc/llist.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ fn iters()
6767
impl IntoIterator for MyContainer
6868
{
6969
type Item = i32;
70-
type IntoIter = the_module::llist::IntoIter< i32 >;
70+
type IntoIter = the_module::linked_list::IntoIter< i32 >;
7171

7272
fn into_iter( self ) -> Self::IntoIter
7373
{
@@ -78,7 +78,7 @@ fn iters()
7878
impl< 'a > IntoIterator for &'a MyContainer
7979
{
8080
type Item = &'a i32;
81-
type IntoIter = the_module::llist::Iter< 'a, i32 >;
81+
type IntoIter = the_module::linked_list::Iter< 'a, i32 >;
8282

8383
fn into_iter( self ) -> Self::IntoIter
8484
{
@@ -89,7 +89,7 @@ fn iters()
8989
impl< 'a > IntoIterator for &'a mut MyContainer
9090
{
9191
type Item = &'a mut i32;
92-
type IntoIter = the_module::llist::IterMut< 'a, i32 >;
92+
type IntoIter = the_module::linked_list::IterMut< 'a, i32 >;
9393

9494
fn into_iter( self ) -> Self::IntoIter
9595
{

module/core/collection_tools/tests/inc/vec.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fn iters()
8686
impl IntoIterator for MyContainer
8787
{
8888
type Item = i32;
89-
type IntoIter = the_module::vec::IntoIter< i32 >;
89+
type IntoIter = the_module::vector::IntoIter< i32 >;
9090
// qqq : should work -- works
9191

9292
fn into_iter( self ) -> Self::IntoIter
@@ -98,7 +98,7 @@ fn iters()
9898
impl< 'a > IntoIterator for &'a MyContainer
9999
{
100100
type Item = &'a i32;
101-
type IntoIter = the_module::vec::Iter< 'a, i32 >;
101+
type IntoIter = the_module::vector::Iter< 'a, i32 >;
102102

103103
fn into_iter( self ) -> Self::IntoIter
104104
{
@@ -109,7 +109,7 @@ fn iters()
109109
impl< 'a > IntoIterator for &'a mut MyContainer
110110
{
111111
type Item = &'a mut i32;
112-
type IntoIter = the_module::vec::IterMut< 'a, i32 >;
112+
type IntoIter = the_module::vector::IterMut< 'a, i32 >;
113113

114114
fn into_iter( self ) -> Self::IntoIter
115115
{

0 commit comments

Comments
 (0)