iterator and const_iteratorSection: 23.2.7 [associative.reqmts] Status: C++11 Submitter: Alisdair Meredith Opened: 2009-03-12 Last modified: 2016-01-28
Priority: Not Prioritized
View other active issues in [associative.reqmts].
View all other issues in [associative.reqmts].
View all issues with C++11 status.
Discussion:
Addresses UK 238 [CD1]
Leaving it unspecified whether or not iterator and const_iterator are the
same type is dangerous, as user code may or may not violate the One
Definition Rule by providing overloads for
both types. It is probably too late to specify a single behaviour, but
implementors should document what to expect. Observing that problems can be
avoided by users restricting themselves to using const_iterator, add a note to that effect.
Suggest Change 'unspecified' to 'implementation defined'.
[ Summit: ]
Agree with issue. Agree with adding the note but not with changing the normative text. We believe the note provides sufficient guidance.
[ Batavia (2009-05): ]
We agree with the proposed resolution. Move to Tentatively Ready.
Proposed resolution:
In 23.2.7 [associative.reqmts] p6, add:
-6-
iteratorof an associative container meets the requirements of theBidirectionalIteratorconcept. For associative containers where the value type is the same as the key type, bothiteratorandconst_iteratorare constant iterators. It is unspecified whether or notiteratorandconst_iteratorare the same type. [Note:iteratorandconst_iteratorhave identical semantics in this case, anditeratoris convertible toconst_iterator. Users can avoid violating the One Definition Rule by always usingconst_iteratorin their function parameter lists -- end note]