MCPcopy Create free account
hub / github.com/BaseXdb/basex / copyFromStart

Method copyFromStart

basex-core/src/main/java/org/basex/util/Array.java:144–147  ·  view source on GitHub ↗

Copies first entries from one array to another array. @param source source array @param length number of array entries to be copied @param target target array @param index target index

(final Object source, final int length, final Object target,
      final int index)

Source from the content-addressed store, hash-verified

142 * @param index target index
143 */
144 public static void copyFromStart(final Object source, final int length, final Object target,
145 final int index) {
146 System.arraycopy(source, 0, target, index, length);
147 }
148
149 /**
150 * Copies first entries from one array to beginning of another array.

Callers 15

readBytesMethod · 0.95
insertMethod · 0.95
varsMethod · 0.95
itemMethod · 0.95
itemMethod · 0.95
padMethod · 0.95
prependMethod · 0.95
appendMethod · 0.95
removeItemMethod · 0.95
subSeqMethod · 0.95
prependMethod · 0.95
concatMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected