MySQL 9.6.0
Source Code Documentation
mysql::iterators::Is_input_iterator_impl Concept Reference

True if Type has the members required for Iterator_interface<Type> to satisfy std::input_iterator. More...

#include <iterator_interface.h>

Concept definition

template<class Type>
True if Type has the members required for Iterator_interface<Type> to satisfy std::input_iterator.
Definition: iterator_interface.h:129
true if Type has an advance member
Definition: iterator_interface.h:97
true if Type has a get member that returns a pointer.
Definition: iterator_interface.h:65
true if Type has a get member that does not return void.
Definition: iterator_interface.h:60
true if Type has a next member.
Definition: iterator_interface.h:77

Detailed Description

True if Type has the members required for Iterator_interface<Type> to satisfy std::input_iterator.

Note that this is weaker than LegacyInputIterator; see Is_legacy_input_iterator_impl.