MCPcopy Create free account
hub / github.com/davidgiven/luje / deleteCharAt

Method deleteCharAt

lib/java/lang/StringBuilder.java:356–359  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

normalizeMethod · 0.95

Calls 1

deleteCharAt0Method · 0.80

Tested by

no test coverage detected