System::TestPredicates::TypeTraits::IsCppContainer< T, Enable > Struct Template Reference

Checks if specific type is STL-style container. To do so, checks for iterator and const_iterator member types existance. If both exist, inherits std::true_type, otherwise inherits std::false_type. More...

Inherits false_type.

Detailed Description

template<typename T, typename Enable = void>
struct System::TestPredicates::TypeTraits::IsCppContainer< T, Enable >

Checks if specific type is STL-style container. To do so, checks for iterator and const_iterator member types existance. If both exist, inherits std::true_type, otherwise inherits std::false_type.

Template Parameters
TType to check.
EnableFormal argument for SFINAE to work.