Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_multi_value_map.hh
| Show First 20 Lines • Show All 133 Lines • ▼ Show 20 Lines | public: | ||||
| typename MapType::ItemIterator items() const | typename MapType::ItemIterator items() const | ||||
| { | { | ||||
| return map_.items(); | return map_.items(); | ||||
| } | } | ||||
| /** | /** | ||||
| * NOTE: This signature will change when the implementation changes. | * NOTE: This signature will change when the implementation changes. | ||||
| */ | */ | ||||
| typename MapType::MutableItemIterator items() | |||||
| { | |||||
| return map_.items(); | |||||
| } | |||||
| /** | |||||
| * NOTE: This signature will change when the implementation changes. | |||||
| */ | |||||
| typename MapType::KeyIterator keys() const | typename MapType::KeyIterator keys() const | ||||
| { | { | ||||
| return map_.keys(); | return map_.keys(); | ||||
| } | } | ||||
| /** | /** | ||||
| * NOTE: This signature will change when the implementation changes. | * NOTE: This signature will change when the implementation changes. | ||||
| */ | */ | ||||
| typename MapType::ValueIterator values() const | typename MapType::ValueIterator values() const | ||||
| { | { | ||||
| return map_.values(); | return map_.values(); | ||||
| } | } | ||||
| }; | }; | ||||
| } // namespace blender | } // namespace blender | ||||