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

Method toCharArray

lib/java/lang/String.java:1443–1447  ·  view source on GitHub ↗

Copies the characters in this string to a character array. @return a character array containing the characters of this string.

()

Source from the content-addressed store, hash-verified

1441 * @return a character array containing the characters of this string.
1442 */
1443 public char[] toCharArray() {
1444 char[] buffer = new char[count];
1445 System.arraycopy(value, offset, buffer, 0, count);
1446 return buffer;
1447 }
1448
1449 /**
1450 * Converts the characters in this string to lowercase, using the default

Callers 3

toLowerCaseMethod · 0.80
StringMethod · 0.80
fixSlashesMethod · 0.80

Calls 1

arraycopyMethod · 0.95

Tested by

no test coverage detected