Template Class ByteContainerConcept

Class Documentation

template<typename Implementation>
class ByteContainerConcept

Defines validating functionality for the byte container concept.

Elements stored in this container can be either signed, unsigned or char type.

Public Functions

inline ecl_compile_time_concept_test(ByteContainerConcept)

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 char, signed char or unsigned char.