(String str)
| 708 | private int pos = 0; // current position in UTF-16 string |
| 709 | |
| 710 | StringIterator(String str) { |
| 711 | this.str = str; |
| 712 | } |
| 713 | |
| 714 | // Returns the cursor position. Do not interpret the result! |
| 715 | int pos() { |
nothing calls this directly
no outgoing calls
no test coverage detected