(String str, int i)
| 3065 | * index more than the length of this string. |
| 3066 | */ |
| 3067 | private static int charAt(String str, int i) { |
| 3068 | if (i >= str.length()) { |
| 3069 | return -1; |
| 3070 | } |
| 3071 | return str.charAt(i); |
| 3072 | } |
| 3073 | |
| 3074 | /// Copies object from one array to another array with reverse of objects |
| 3075 | /// order. Source and destination arrays may be the same. |
no test coverage detected