| 216 | iterator begin() { return m_str.begin(); } |
| 217 | const_iterator begin() const { return m_str.begin(); } |
| 218 | iterator end() { return m_str.end(); } |
| 219 | const_iterator end() const { return m_str.end(); } |
| 220 | |
| 221 | operator string_type() const { return m_str; } |
no outgoing calls
no test coverage detected