| 659 | } |
| 660 | |
| 661 | bool UString::inString(unicode_char ch) const |
| 662 | { |
| 663 | const_iterator i; |
| 664 | const_iterator ie = end(); |
| 665 | for (i = begin(); i != ie; i.moveNext()) |
| 666 | { |
| 667 | if (i.getCharacter() == ch) |
| 668 | return true; |
| 669 | } |
| 670 | return false; |
| 671 | } |
| 672 | |
| 673 | const std::string& UString::asUTF8() const |
| 674 | { |
no test coverage detected