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

Method insert

lib/java/lang/StringBuilder.java:377–380  ·  view source on GitHub ↗

Inserts the string representation of the specified boolean value at the specified offset. The boolean value is converted to a string according to the rule defined by String#valueOf(boolean). @param offset the index to insert at. @param b the {@c

(int offset, boolean b)

Source from the content-addressed store, hash-verified

375 * @see String#valueOf(boolean)
376 */
377 public StringBuilder insert(int offset, boolean b) {
378 insert0(offset, b ? "true" : "false"); //$NON-NLS-1$ //$NON-NLS-2$
379 return this;
380 }
381
382 /**
383 * Inserts the string representation of the specified {@code char} value at

Callers 1

normalizeMethod · 0.95

Calls 6

toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
insert0Method · 0.80
toStringMethod · 0.65

Tested by

no test coverage detected