Content deleted Content added
Line 73:
import std;
▲consteval auto makeInvoker(std::meta::info refl, auto method_name) {
return [refl](auto&& instance) {
for (std::meta::info member: members) {
▲ constexpr auto mems = nonstatic_members_of(refl);
instance.[:M: ]();
}(std::integral_constant<decltype(
}
}
|