2
0
Эх сурвалжийг харах

make concat parameter optional (= copy)

Nicolas Cannasse 15 жил өмнө
parent
commit
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;