feat: implement List.addAll() method to append elements from iterable

Add `addAll(other)` method to the List class in both the Wren core library source and its embedded C string representation. The method iterates over the given `other` sequence, appends each element to the list using the existing `add()` method, and returns the original `other` argument to match the documented return behavior. Include a new test file `test/list/add_all.wren` covering basic appending, empty iterable, range input, and return value verification.
This commit is contained in:
Bob Nystrom
2014-04-06 15:37:37 +00:00
parent e8d31eddaf
commit be8c586d4b
4 changed files with 26 additions and 3 deletions
+1 -3
View File
@@ -1,6 +1,4 @@
var a = []
a.add(1)
IO.print(a) // expect: [1]
var a = [1]
a.add(2)
IO.print(a) // expect: [1, 2]
a.add(3)