Changeset 830:89dfa3bece81 in lemon-0.x for src/hugo/vector_map.h
- Timestamp:
- 09/12/04 21:32:21 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1128
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/vector_map.h
r822 r830 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 230 private: 206 231
Note: See TracChangeset
for help on using the changeset viewer.