| 214 | const_pointer c_str() const { return m_str.c_str(); } |
| 215 | |
| 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(); } |
no outgoing calls
no test coverage detected