فهرست منبع

make concat parameter optional (= copy)

Nicolas Cannasse 15 سال پیش
والد
کامیت
468bfa48b1
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      std/flash9/Vector.hx

+ 1 - 1
std/flash9/Vector.hx

@@ -13,7 +13,7 @@ extern class Vector<T> implements ArrayAccess<T> {
 	var fixed : Bool;
 
 	function new( ?length : UInt, ?fixed : Bool ) : Void;
-	function concat( a : Vector<T> ) : Vector<T>;
+	function concat( ?a : Vector<T> ) : Vector<T>;
 	function join( sep : String ) : String;
 	function pop() : Null<T>;
 	function push(x : T) : Int;