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

Unified Diff: packages/quiver/lib/src/collection/delegates/list.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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
Index: packages/quiver/lib/src/collection/delegates/list.dart
diff --git a/packages/quiver/lib/src/collection/delegates/list.dart b/packages/quiver/lib/src/collection/delegates/list.dart
index 7863539407c20f3e37e0eedee8e5b24f1dee4f31..864ff86d0ad5aff9303c10911a2b1a93fb21b044 100644
--- a/packages/quiver/lib/src/collection/delegates/list.dart
+++ b/packages/quiver/lib/src/collection/delegates/list.dart
@@ -14,18 +14,16 @@
part of quiver.collection;
-/**
- * An implementation of [List] that delegates all methods to another [List].
- * For instance you can create a FruitList like this :
- *
- * class FruitList extends DelegatingList<Fruit> {
- * final List<Fruit> _fruits = [];
- *
- * List<Fruit> get delegate => _fruits;
- *
- * // custom methods
- * }
- */
+/// An implementation of [List] that delegates all methods to another [List].
+/// For instance you can create a FruitList like this :
+///
+/// class FruitList extends DelegatingList<Fruit> {
+/// final List<Fruit> _fruits = [];
+///
+/// List<Fruit> get delegate => _fruits;
+///
+/// // custom methods
+/// }
abstract class DelegatingList<E> extends DelegatingIterable<E>
implements List<E> {
List<E> get delegate;
« no previous file with comments | « packages/quiver/lib/src/collection/delegates/iterable.dart ('k') | packages/quiver/lib/src/collection/delegates/map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698