#ifndef RFL_INTERNAL_VARIANT_IS_CONVERTIBLE_TO_HPP_ #define RFL_INTERNAL_VARIANT_IS_CONVERTIBLE_TO_HPP_ #include #include "../element_index.hpp" namespace rfl::internal::variant { template static constexpr bool is_convertible_to() { return std::disjunction_v...>; } } // namespace rfl::internal::variant #endif