Explorar o código

make concat parameter optional (= copy)

Nicolas Cannasse %!s(int64=15) %!d(string=hai) anos
pai
achega
468bfa48b1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;