#ifndef RFL_INTERNAL_ISVALIDATOR_HPP_ #define RFL_INTERNAL_ISVALIDATOR_HPP_ #include #include "../Validator.hpp" #include "StringLiteral.hpp" namespace rfl { namespace internal { template class is_validator; template class is_validator : public std::false_type {}; template class is_validator> : public std::true_type {}; template constexpr bool is_validator_v = is_validator>>::value; } // namespace internal } // namespace rfl #endif