No description
Find a file
2024-08-23 23:09:57 +00:00
cmake Fix cmake package 2024-03-24 20:09:25 +00:00
examples/src Use import utempl instead import utempl.* 2024-08-23 23:09:57 +00:00
include/utempl Migrate to C++20 modules 2024-07-31 02:19:28 +00:00
src Migrate to C++20 modules 2024-07-31 02:19:28 +00:00
tests Use import utempl instead import utempl.* 2024-08-23 23:09:57 +00:00
.clang-format Add .clang-format, .clang-tidy and fixes 2024-07-04 14:17:21 +00:00
.clang-tidy Add .clang-format, .clang-tidy and fixes 2024-07-04 14:17:21 +00:00
.gitignore Migrate to C++20 modules 2024-07-31 02:19:28 +00:00
CMakeLists.txt Migrate to C++20 modules 2024-07-31 02:19:28 +00:00
LICENSE Initial commit 2024-02-22 15:12:35 +00:00
README.md Update README.md for C++20 modules 2024-07-31 02:22:33 +00:00

uTempl - Modern C++ Template Library

Features

Ranges Like Interface For TupleLike

import utempl;

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});
};

Storage types in array

import utempl;
import std;

auto main() -> int {
  using namespace utempl;
  constexpr std::array types{kTypeId<int>, kTypeId<void>};
  static_assert(std::is_same_v<GetMetaInfo<types[0]>::Type, int>);
  static_assert(std::is_same_v<GetMetaInfo<types[1]>::Type, void>);
  static_assert(std::is_same_v<decltype(GetTypeListForTag()), TypeList<int, void>>);
};

License

This project is licensed under the MIT License - see the LICENSE file for details.