refactor: rename Sequence method forall to all across core lib, C source, and test files

This commit is contained in:
Gavin Schulz
2015-01-15 07:19:31 +00:00
parent cb1703409c
commit adee8ac482
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ class Sequence {
return result
}
forall(f) {
all(f) {
for (element in this) {
if (!f.call(element)) return false
}