Deletes the character at the specified index. Shifts any remaining characters to the left. @param index the index of the character to delete. @return this builder. @throws StringIndexOutOfBoundsException if index is less than zero or is greater than or equ
(int index)
| 354 | * equal to the current length. |
| 355 | */ |
| 356 | public StringBuilder deleteCharAt(int index) { |
| 357 | deleteCharAt0(index); |
| 358 | return this; |
| 359 | } |
| 360 | |
| 361 | /** |
| 362 | * Inserts the string representation of the specified {@code boolean} value |
no test coverage detected