Template Class UnsignedByteContainerConcept
Defined in File containers.hpp
Class Documentation
-
template<typename Implementation>
class UnsignedByteContainerConcept Defines validating functionality for the byte container concept.
Public Functions
-
inline ecl_compile_time_concept_test(UnsignedByteContainerConcept)
Implements a concept test for byte containers.
The following conditions are required by byte containers:
begin() : a method for retrieving a pointer/iterator to the start of the container.
end() : a method for retrieving a pointer/iterator to the end of the container.
size() : a method for retrieving the number of elements stored in the container.
value_type : a typedef for the element type stored in the container, must be unsigned char.
-
inline ecl_compile_time_concept_test(UnsignedByteContainerConcept)