Array.hx 203 B

12345678
  1. package 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. }