| 46 | struct WrapperStringClass |
| 47 | { |
| 48 | TransformIterator<decltype(&concat), std::vector<std::string>::const_iterator> begin() const |
| 49 | { |
| 50 | return { m_Vec.begin(), &concat }; |
| 51 | } |
| 52 | |
| 53 | TransformIterator<decltype(&concat), std::vector<std::string>::const_iterator> end() const |
| 54 | { |