std::is_bounded_array (3) Linux Manual Page
std::is_bounded_array – std::is_bounded_array Synopsis Defined in header<type_traits> template <class T> (since C++ 20) struct is_bounded_array; Checks whether T is an array type of known bound. Provides the member constant value which is equal to true, if T is an array type of known bound. Otherwise, value is equal to false. Template parameters T – a…
