mirror of
https://github.com/boostorg/iterator.git
synced 2025-05-11 13:33:56 +00:00
fixed a little buglet in the spec of Incrementable Iterator
[SVN r23511]
This commit is contained in:
parent
f0bc339d55
commit
aa62f4f9c7
@ -468,7 +468,8 @@ stated semantics.
|
||||
+--------------------------------+----------------------------------+---------------------------------------+
|
||||
|``r++`` |if ``X`` is a *Writable Iterator* |if ``X`` is a *Writable Iterator* then |
|
||||
| |then convertible to ``const X&`` |``X a(r++);`` is equivalent to |
|
||||
| | |``X a(r); ++r;`` |
|
||||
| | |``X a(r); ++r;`` otherwise ``r++`` |
|
||||
| | |is equivalent to ``++r`` |
|
||||
+--------------------------------+----------------------------------+---------------------------------------+
|
||||
|``*r++`` |if ``X`` is a *Readable Iterator* |if ``X`` is a *Readable Iterator* then |
|
||||
| |then ``T`` |``T z(*r++);`` is equivalent to |
|
||||
|
Loading…
x
Reference in New Issue
Block a user