# uTempl - Modern C++ Template Library ## Features ### Ranges Like Interface For TupleLike ```cpp #include auto main() -> int { using namespace utempl; 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}); }; ``` ### Storage types in array ```cpp #include #include #include auto main() -> int { using namespace utempl; constexpr std::array types{kTypeId, kTypeId}; static_assert(std::is_same_v::Type, int>); static_assert(std::is_same_v::Type, void>); }; ``` ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.