diff --git a/doc/new-iter-concepts.html b/doc/new-iter-concepts.html index 1e04c84..9dcc450 100755 --- a/doc/new-iter-concepts.html +++ b/doc/new-iter-concepts.html @@ -366,9 +366,9 @@ the stated semantics. U is the type T.
Readable Iterator Requirements (in addition to Assignable and Copy Constructible) | @@ -386,21 +386,22 @@ non-cv-qualified type|||
---|---|---|---|
*a | Convertible to T | -pre: a is -dereferenceable. If a -== b then *a is -equivalent to *b. | +
|
a->m | U& | -pre: (*a).m is -well-defined. Equivalent -to (*a).m | +pre: static_cast<T const&>(*a).m is well-defined. If +static_cast<T&>(*a).m is well-defined, equivalent to +static_cast<T&>(*a).m; otherwise, equivalent to +static_cast<T const&>(*a).m. |