floitsch@google.com
2013-02-15 13:57:18 +00:00
parent ad839e6957
commit 0672317bec
26 changed files with 9 additions and 352 deletions
-8
View File
@@ -104,10 +104,6 @@ class _ObjectArray<E> implements List<E> {
return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(E element)) {
IterableMixinWorkaround.mappedByList(this, f);
}
reduce(initialValue, combine(previousValue, E element)) {
return IterableMixinWorkaround.reduce(this, initialValue, combine);
}
@@ -338,10 +334,6 @@ class _ImmutableArray<E> implements List<E> {
return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(E element)) {
return IterableMixinWorkaround.mappedByList(this, f);
}
String join([String separator]) {
return IterableMixinWorkaround.joinList(this, separator);
}
-4
View File
@@ -233,10 +233,6 @@ abstract class _ByteArrayBase {
return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(int element)) {
return IterableMixinWorkaround.mappedByList(this, f);
}
String join([String separator]) {
return IterableMixinWorkaround.join(this, separator);
}
-4
View File
@@ -246,10 +246,6 @@ class _GrowableObjectArray<T> implements List<T> {
return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(T element)) {
return IterableMixinWorkaround.mappedByList(this, f);
}
reduce(initialValue, combine(previousValue, T element)) {
return IterableMixinWorkaround.reduce(this, initialValue, combine);
}