MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / getChars

Method getChars

vm/JavaAPI/src/java/lang/String.java:332–332  ·  view source on GitHub ↗

Copies characters from this string into the destination character array. The first character to be copied is at index srcBegin; the last character to be copied is at index srcEnd-1 (thus the total number of characters to be copied is srcEnd-srcBegin). The characters are copied into the subarray of d

(int srcBegin, int srcEnd, char[] dst, int dstBegin)

Source from the content-addressed store, hash-verified

330 * dstbegin + (srcEnd-srcBegin) - 1
331 */
332 public native void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin);//{
333// for(int iter = srcBegin ; iter < srcEnd ; iter++) {
334// dst[dstBegin] = value[offset + iter];
335// dstBegin++;

Callers 5

invoke45Method · 0.45
invoke46Method · 0.45
StringMethod · 0.45
readMethod · 0.45
writeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected