Skip to content

Commit

Permalink
Removing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed May 14, 2024
1 parent 6eaf7f6 commit 666778a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/tools/std23/test/usecase.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using namespace njoy::tools;

class TestCase {

std::vector< double > vector_ = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20 };

Expand Down Expand Up @@ -65,21 +65,21 @@ class TestCase {
auto drop_stride() const {

using namespace njoy::tools;
return this->all() | std20::views::drop( 2 )
return this->all() | std20::views::drop( 2 )
| std23::views::stride( 2 );
}

auto drop_chunk() const {

using namespace njoy::tools;
return this->all() | std20::views::drop( 2 )
return this->all() | std20::views::drop( 2 )
| std23::views::chunk( 2 );
}

auto stride_drop() const {

using namespace njoy::tools;
return this->all() | std23::views::stride( 2 )
return this->all() | std23::views::stride( 2 )
| std20::views::drop( 2 );
}

Expand All @@ -93,14 +93,14 @@ class TestCase {
auto chunk_stride() const {

using namespace njoy::tools;
return this->all() | std23::views::chunk( 2 )
return this->all() | std23::views::chunk( 2 )
| std23::views::stride( 2 );
}

auto stride_chunk() const {

using namespace njoy::tools;
return this->all() | std23::views::stride( 2 )
return this->all() | std23::views::stride( 2 )
| std23::views::chunk( 2 );
}
};
Expand Down

0 comments on commit 666778a

Please sign in to comment.