#ifndef RFL_INTERNAL_HASREFLECTIONMETHODV_HPP_ #define RFL_INTERNAL_HASREFLECTIONMETHODV_HPP_ #include namespace rfl::internal { template constexpr bool has_reflection_method_v = requires(T t) { { t.reflection() } -> std::convertible_to; }; } // namespace rfl::internal #endif