qb
2.0.0.0
C++17 Actor Framework
|
Type trait to check if a type T is a container. More...
#include <type_traits.h>
Type trait to check if a type T is a container.
A type T is considered a container if it has a const_iterator nested type, and begin() and end() member functions that return this const_iterator. Specializations exist for C-style arrays, std::valarray, std::pair, and std::tuple.
T | The type to check. |