mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
19 lines
325 B
C++
19 lines
325 B
C++
|
|
#include "catch.hpp"
|
|
|
|
#include <core/array.hpp>
|
|
#include <core/ranges.hpp>
|
|
|
|
using namespace ngcore;
|
|
|
|
TEST_CASE("ranges")
|
|
{
|
|
Array<int> a { 3, -1, 10, -5 };
|
|
Array<int> positive { 3, 10 };
|
|
int i = 0;
|
|
for(auto pos_val : a | filter([](auto val) { return val >= 0; }))
|
|
{
|
|
CHECK(pos_val == positive[i++]);
|
|
}
|
|
}
|