feat: add Sequence.list method to convert any sequence into a List

Implements a new `list` method on the Sequence class that iterates over all elements and collects them into a new List instance. Includes documentation in the core sequence docs and a test case verifying correct behavior with a custom sequence implementation.
This commit is contained in:
Thorbjørn Lindeijer
2015-03-27 21:59:58 +00:00
parent b7904a89c9
commit 33d1217d6a
4 changed files with 34 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
class TestSequence is Sequence {
iterate(iterator) {
if (iterator == null) return 1
if (iterator == 3) return false
return iterator + 1
}
iteratorValue(iterator) { iterator }
}
IO.print((new TestSequence).list) // expect: [1, 2, 3]