General Utility Library for C++14
2.11
|
Helper type trait object to determine if a type is a container.
A container is identified by the presense of the cbegin()
and cend()
member functions and a value_type
type alias.
If the type specified as template parameter has the required members std::true_type
is returned, otherwise std::false_type
.
T | Type to check |
std::true_type
if the type is probably a container#include <traits.h>
Inherits std::false_type.