Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2771)

Unified Diff: dart/sdk/lib/core/list.dart

Issue 12296011: Version 0.3.7.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/sdk/lib/core/iterable.dart ('k') | dart/sdk/lib/core/string_buffer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/core/list.dart
===================================================================
--- dart/sdk/lib/core/list.dart (revision 18634)
+++ dart/sdk/lib/core/list.dart (working copy)
@@ -77,13 +77,9 @@
void addAll(Iterable<E> iterable);
/**
- * Returns a reversed fixed-length view of this [List].
- *
- * The reversed list has elements in the opposite order of this list.
- * It is backed by this list, but will stop working if this list
- * becomes shorter than its current length.
+ * Returns an [Iterable] of the elements of this [List] in reverse order.
*/
- List<E> get reversed;
+ Iterable<E> get reversed;
/**
* Sorts the list according to the order specified by the [compare] function.
« no previous file with comments | « dart/sdk/lib/core/iterable.dart ('k') | dart/sdk/lib/core/string_buffer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698