System::TestPredicates::TypeTraits::BothArrayOrList typedef

BothArrayOrList typedef

Verifica se entrambi gli argomenti di tipo sono array o liste. In tal caso, il membro value è impostato su true, altrimenti è impostato su false.

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

Vedi anche