Add pipe example

This commit is contained in:
sha512sum 2024-03-28 19:19:56 +00:00
parent 7608faa225
commit 93576965d9

12
examples/src/pipe.cpp Normal file
View file

@ -0,0 +1,12 @@
#include <utempl/utils.hpp>
auto main() -> int {
using namespace utempl;
constexpr TupleLike auto tuple = Tuple{1, 2, 3, 4, 5, 6}
| Take<5>()
| Map([](int arg){return arg + 1;})
| Map([](int arg) -> float {return arg;})
| Reverse()
| Take<3>(); // Lazy evaluate
static_assert(tuple == Tuple{6.0f, 5.0f, 4.0f});
};