MCPcopy Create free account
hub / github.com/ReadyTalk/avian / replace

Method replace

classpath/java/lang/StringBuilder.java:230–234  ·  view source on GitHub ↗
(int start, int end, String str)

Source from the content-addressed store, hash-verified

228 }
229
230 public StringBuilder replace(int start, int end, String str) {
231 delete(start, end);
232 insert(start, str);
233 return this;
234 }
235
236 public int indexOf(String s) {
237 return indexOf(s, 0);

Callers

nothing calls this directly

Calls 2

deleteMethod · 0.95
insertMethod · 0.95

Tested by

no test coverage detected