| 908 | typedef iterator_base<const KeyValuePair> const_iterator; |
| 909 | |
| 910 | iterator begin() { return iterator(this); } |
| 911 | iterator end() { return iterator(); } |
| 912 | const_iterator begin() const { return const_iterator(this); } |
| 913 | const_iterator end() const { return const_iterator(); } |
nothing calls this directly
no test coverage detected