template <PixelIteratorConcept Iterator>
concept PixelImageIteratorConcept {
size_t Iterator::width() const; // the number of pixels in a row
size_t Iterator::x_pos() const; // the index of the current pixel horizontallytypename x_iterator; where PixelIteratorConcept<x_iterator>;
x_iterator Iterator::x();
bool Iterator::is_contiguous() const; // returns true if there is no padding at the end of the rows
};
Public Member Functions
void
constraints ()
Public Attributes
Iterator
it
The documentation for this struct was generated from the following file: