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

Method replace

lib/java/lang/StringBuffer.java:673–676  ·  view source on GitHub ↗

Replaces the characters in the specified range with the contents of the specified string. @param start the inclusive begin index. @param end the exclusive end index. @param string the string that will replace the contents in the range. @return this buffer. @throws S

(int start, int end, String string)

Source from the content-addressed store, hash-verified

671 * the length of {@code s}.
672 */
673 public synchronized StringBuffer replace(int start, int end, String string) {
674 replace0(start, end, string);
675 return this;
676 }
677
678 /**
679 * Reverses the order of characters in this buffer.

Callers

nothing calls this directly

Calls 1

replace0Method · 0.80

Tested by

no test coverage detected