| 44 | string::operator std::string&() { return *my; } |
| 45 | string::operator const std::string&()const { return *my; } |
| 46 | char* string::data() { return &my->front(); } |
| 47 | |
| 48 | string::iterator string::begin() { return &(*this)[0]; } |
| 49 | string::iterator string::end() { return &(*this)[size()]; } |
no outgoing calls
no test coverage detected