(int ch)
| 249 | /// such that: this.charAt( |
| 250 | /// ) == ch is true. The String is searched backwards starting at the last character. |
| 251 | public int lastIndexOf(int ch){ |
| 252 | return 0; //TODO codavaj!! |
| 253 | } |
| 254 | |
| 255 | /// Returns the index within this string of the last occurrence of the specified character, searching backward starting at the specified index. That is, the index returned is the largest value |
| 256 | /// such that: (this.charAt(k) == ch) && (k <= fromIndex) is true. |
no test coverage detected