| 64 | iterator begin() { return m_data.begin(); } |
| 65 | const_iterator begin() const { return m_data.begin(); } |
| 66 | iterator end() { return m_data.end(); } |
| 67 | const_iterator end() const { return m_data.end(); } |
| 68 | |
| 69 | /** Return true if this collection is empty. */ |
no outgoing calls
no test coverage detected