MCPcopy Index your code
hub / github.com/antlr/codebuff / append

Method append

output/java_guava/1.4.17/Files.java:350–352  ·  view source on GitHub ↗

Appends a character sequence (such as a string) to a file using the given character set. @param from the character sequence to append @param to the destination file @param charset the charset used to encode the output stream; see StandardCharsets for helpful predefined constants @throws

(CharSequence from, File to, Charset charset)

Source from the content-addressed store, hash-verified

348
349
350 public static void append(CharSequence from, File to, Charset charset) throws IOException {
351 write(from, to, charset, true);
352 }
353
354 /**
355 * Private helper method. Writes a character sequence to a file, optionally appending.

Callers 15

visitTerminalMethod · 0.45
filesFunction · 0.45
joinMethod · 0.45
toStringMethod · 0.45
getMethod · 0.45
toStringMethod · 0.45
instrsMethod · 0.45
disassembleMethod · 0.45
showConstPoolOperandMethod · 0.45
stringsMethod · 0.45

Calls 1

writeMethod · 0.95

Tested by 1

writePythonMethod · 0.36