The Wayback Machine - https://web.archive.org/web/20180614184258/http://ja.cppreference.com:80/w/cpp/concept/InputIterator
名前空間
変種
操作

C++ コンセプト: InputIterator

提供: cppreference.com
< cpp‎ | concept

 
 
 
InputIteratorは、ポイント先の要素から読み取ることができIteratorです.
Original:
An InputIterator is an Iterator that can read from the pointed-to element.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集]要件

Itする型InputIteratorための上記の要件に加えて、インスタンスがabItの必要があります
Original:
In addition to the above requirements, for a type It to be an InputIterator, instances a and b of It must:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ExpressionReturnEquivalent expressionNotes
a != bbool!(a == b)
*avalue_typeIf a == b equivalent to *b
a->m(*a).m
++aIt&After this, copies of a may be invalidated
a++++a
*a++value_typevalue_type t =*a;

++a;

return t;
close