equal
deleted
inserted
replaced
200 */ |
200 */ |
201 ConstIterator end() const { |
201 ConstIterator end() const { |
202 return ConstIterator(*this, INVALID); |
202 return ConstIterator(*this, INVALID); |
203 } |
203 } |
204 |
204 |
|
205 /// The KeySet of the Map. |
|
206 typedef MapConstKeySet<VectorMap> ConstKeySet; |
|
207 |
|
208 /// KeySet getter function. |
|
209 ConstKeySet keySet() const { |
|
210 return ConstKeySet(*this); |
|
211 } |
|
212 |
|
213 /// The ConstValueSet of the Map. |
|
214 typedef MapConstValueSet<VectorMap> ConstValueSet; |
|
215 |
|
216 /// ConstValueSet getter function. |
|
217 ConstValueSet valueSet() const { |
|
218 return ConstValueSet(*this); |
|
219 } |
|
220 |
|
221 /// The ValueSet of the Map. |
|
222 typedef MapValueSet<VectorMap> ValueSet; |
|
223 |
|
224 /// ValueSet getter function. |
|
225 ValueSet valueSet() { |
|
226 return ValueSet(*this); |
|
227 } |
|
228 |
|
229 |
205 private: |
230 private: |
206 |
231 |
207 Container container; |
232 Container container; |
208 |
233 |
209 |
234 |