blob: eac8bbfbc52d6eedfc91591aa39278a4c75b6125 [file] [log] [blame]
package kotlinx.coroutines.experimental.internal
/**
* Cross-platform array copy. Overlaps of source and destination are not supported
*/
internal expect fun <E> arraycopy(source: Array<E>, srcPos: Int, destination: Array<E?>, destinationStart: Int, length: Int)