Reland folding range (#94)

This commit is contained in:
ykiko
2025-02-26 13:20:34 +08:00
committed by GitHub
parent ef4ce069b8
commit 74f1f13aaf
11 changed files with 594 additions and 611 deletions

View File

@@ -12,10 +12,10 @@ namespace clice::refl {
namespace impl {
struct Any {
consteval Any(std::size_t);
constexpr Any(std::size_t);
template <typename T>
consteval operator T () const;
constexpr operator T () const;
};
template <typename T, std::size_t N>