diff options
| author | 2023-02-02 13:52:59 +0100 | |
|---|---|---|
| committer | 2023-02-03 00:26:19 +0100 | |
| commit | c2f396a53745a74dd58de3b55092a77e0e9f639d (patch) | |
| tree | 414cdd055f6375d0bfb7dcabedb6dbd9121ad5e7 /include/plist/Dictionary.h | |
| parent | cbb43d790d7ba0575369cebdf6f8cb451bd210fd (diff) | |
| download | libplist-c2f396a53745a74dd58de3b55092a77e0e9f639d.tar.gz libplist-c2f396a53745a74dd58de3b55092a77e0e9f639d.tar.bz2 | |
Add lowercase begin/end iterator functions
... for Dictionary and Array
Diffstat (limited to 'include/plist/Dictionary.h')
| -rw-r--r-- | include/plist/Dictionary.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h index a3ac3a7..f3385e3 100644 --- a/include/plist/Dictionary.h +++ b/include/plist/Dictionary.h | |||
| @@ -45,10 +45,14 @@ public : | |||
| 45 | 45 | ||
| 46 | Node* operator[](const std::string& key); | 46 | Node* operator[](const std::string& key); |
| 47 | iterator Begin(); | 47 | iterator Begin(); |
| 48 | iterator begin(); | ||
| 48 | iterator End(); | 49 | iterator End(); |
| 50 | iterator end(); | ||
| 49 | iterator Find(const std::string& key); | 51 | iterator Find(const std::string& key); |
| 50 | const_iterator Begin() const; | 52 | const_iterator Begin() const; |
| 53 | const_iterator begin() const; | ||
| 51 | const_iterator End() const; | 54 | const_iterator End() const; |
| 55 | const_iterator end() const; | ||
| 52 | const_iterator Find(const std::string& key) const; | 56 | const_iterator Find(const std::string& key) const; |
| 53 | iterator Set(const std::string& key, const Node* node); | 57 | iterator Set(const std::string& key, const Node* node); |
| 54 | iterator Set(const std::string& key, const Node& node); | 58 | iterator Set(const std::string& key, const Node& node); |
