Prechádzať zdrojové kódy

[std] fix Lambda.filter signature

closes #7420
Simon Krajewski 7 rokov pred
rodič
commit
79e6d2ca47
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      std/Lambda.hx

+ 1 - 1
std/Lambda.hx

@@ -166,7 +166,7 @@ class Lambda {
 		If `it` is empty, the result is the empty Array even if `f` is null.
 		Otherwise if `f` is null, the result is unspecified.
 	**/
-	public static function filter<A>( it : Array<A>, f : A -> Bool ) {
+	public static function filter<A>( it : Iterable<A>, f : A -> Bool ) {
 		return [for (x in it) if (f(x)) x];
 	}