Array.hx 206 B

12345678
  1. package cs.system;
  2. @:native("System.Array")
  3. extern class Array
  4. {
  5. public static function Copy(sourceArray:Array, sourceIndex:Int, destinationArray:Array, destinationIndex:Int, length:Int):Void;
  6. }