diff --git a/lynglib/stdlib/lyng/root.lyng b/lynglib/stdlib/lyng/root.lyng index 62cf8ae..441d86c 100644 --- a/lynglib/stdlib/lyng/root.lyng +++ b/lynglib/stdlib/lyng/root.lyng @@ -7,7 +7,6 @@ extern class Exception extern class IllegalArgumentException extern class NotImplementedException extern class Delegate - extern class Iterable { fun iterator(): Iterator fun forEach(action: (T)->Void): Void @@ -29,6 +28,7 @@ extern class Array : Collection { } extern class List : Array { + fun add(value: T, more...): Void } extern class Set : Collection {