MCPcopy Index your code
hub / github.com/davidgiven/luje / replace

Method replace

lib/java/lang/StringBuilder.java:634–637  ·  view source on GitHub ↗

Replaces the specified subsequence in this builder with the specified string. @param start the inclusive begin index. @param end the exclusive end index. @param str the replacement string. @return this builder. @throws StringIndexOutOfBoundsException if

(int start, int end, String str)

Source from the content-addressed store, hash-verified

632 * if {@code str} is {@code null}.
633 */
634 public StringBuilder replace(int start, int end, String str) {
635 replace0(start, end, str);
636 return this;
637 }
638
639 /**
640 * Reverses the order of characters in this builder.

Callers

nothing calls this directly

Calls 1

replace0Method · 0.80

Tested by

no test coverage detected