#include <gil_concept.hpp>
List of all members.
template <typename Iterator> concept PixelIteratorConcept : boost_concepts::RandomAccessTraversalConcept<Iterator> { where PixelValueConcept<value_type>; typename pixel_t = value_type; typename color_space_t; where ColorSpaceTypeConcept<color_space_t>; typename channel_t; where ChannelValueConcept<channel_t>; typename const_reference; where PixelConcept<const_reference>; typename const_t where PixelIteratorConcept<const_t>; typename dynamic_step_t; where StepIteratorConcept<dynamic_step_t>; where dynamic_step_t::value_type == value_type; static const bool is_base; // is it an iterator adaptor static const bool is_planar; // is it over planar data };