Tweak IO library a bit:

- Reword some docs.
- Make IO.printAll() public.
- Require () on read.
This commit is contained in:
Bob Nystrom
2015-07-18 14:09:00 -07:00
parent ea2bad3272
commit d91c06d18b
5 changed files with 96 additions and 80 deletions
+2 -2
View File
@@ -52,8 +52,8 @@ class Sequence {
}
}
isEmpty { iterate(null) ? false : true }
isEmpty { iterate(null) ? false : true }
map(transformation) { new MapSequence(this, transformation) }
where(predicate) { new WhereSequence(this, predicate) }