| Iterator concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator primitives | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Algorithm concepts and utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Indirect callable concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Common algorithm requirements | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <iterator> | ||
template<class In,class Out> concept indirectly_copyable_storable= | (since C++20) | |
Theindirectly_copyable_storable concept specifies the relationship between anindirectly_readable type and anindirectly_writable type. In addition toindirectly_copyable, this concept specifies that the copy from theindirectly_readable type can be performed via an intermediate object.
In andOut modelstd::indirectly_copyable_storable<In, Out> only if given a dereferenceable valuei of typeIn:
obj is equal to the value previously denoted by*i, andobj.Expressions declared inrequires expressions of the standard library concepts are required to beequality-preserving (except where stated otherwise).
(C++20) | specifies that values may be copied from anindirectly_readable type to anindirectly_writable type(concept)[edit] |
(C++20) | specifies that values may be moved from anindirectly_readable type to anindirectly_writable type and that the move may be performed via an intermediate object(concept)[edit] |