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

Method append

lib/java/nio/CharBuffer.java:708–710  ·  view source on GitHub ↗

Writes the given char to the current position and increases the position by 1. @param c the char to write. @return this buffer. @exception BufferOverflowException if position is equal or greater than limit. @exception ReadOnlyBufferException if no changes ma

(char c)

Source from the content-addressed store, hash-verified

706 * if no changes may be made to the contents of this buffer.
707 */
708 public CharBuffer append(char c) {
709 return put(c);
710 }
711
712 /**
713 * Writes all chars of the given character sequence {@code csq} to the

Callers

nothing calls this directly

Calls 4

putMethod · 0.95
toStringMethod · 0.95
lengthMethod · 0.95
subSequenceMethod · 0.65

Tested by

no test coverage detected