Template Class SignedByteContainerConcept

Class Documentation

template<typename Implementation>
class SignedByteContainerConcept

Defines validating functionality for the signed byte container concept.

Public Functions

inline ecl_compile_time_concept_test(SignedByteContainerConcept)

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 signed char.