BothArrayOrList

BothArrayOrList typedef

Checks if both type arguments are arrays or lists. If so, value member is set to true, otherwise it is set to false.

using System::TestPredicates::TypeTraits::BothArrayOrList = typedef std::integral_constant<bool, (IsArray<T1>::value || IsList<T1>::value) && (IsArray<T2>::value || IsList<T2>::value)>

See Also