| 132 | } |
| 133 | |
| 134 | String::WideString String::wideString() const { |
| 135 | WideString string; |
| 136 | string.reserve(m_string.size()); |
| 137 | for (Char c : *this) |
| 138 | string.push_back(c); |
| 139 | return string; |
| 140 | } |
| 141 | |
| 142 | String::const_iterator String::begin() const { |
| 143 | return const_iterator(m_string.begin()); |
no test coverage detected