C++Spec 1.0.0
BDD testing for C++
|
Concept for checking whether T is a container type. More...
#include <util.hpp>
Concept for checking whether T is a container type.
Provides the member constant value which is equal to true
, if T is a container type. Otherwise, value is equal to false
.
A container is defined by having the functions begin
, end
, max_size
, and empty
.
T | a type to check |