Index: sdk/lib/core/iterable.dart |
diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart |
index 618eeb8b4cc95798921bc8398db235139130ba35..56e96ef048a5b7a1e99480a160b1cffd0614978c 100644 |
--- a/sdk/lib/core/iterable.dart |
+++ b/sdk/lib/core/iterable.dart |
@@ -51,6 +51,12 @@ abstract class Iterable<E> { |
Iterable map(f(E element)) => new MappedIterable<E, dynamic>(this, f); |
/** |
+ * Deprecated alias for [map]. |
+ */ |
+ @deprecated |
+ Iterable mappedBy(f(E element)) => map(f); |
+ |
+ /** |
* Returns a lazy [Iterable] with all elements that satisfy the |
* predicate [f]. |
* |