#ifndef RFL_INTERNAL_ISARRAY_HPP_ #define RFL_INTERNAL_ISARRAY_HPP_ #include #include #include #include "Array.hpp" namespace rfl::internal { template class is_array; template class is_array : public std::false_type {}; template class is_array> : public std::true_type {}; template constexpr bool is_array_v = is_array>>::value; } // namespace rfl::internal #endif