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

Unified Diff: packages/quiver/lib/src/collection/delegates/queue.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/queue.dart
diff --git a/packages/quiver/lib/src/collection/delegates/queue.dart b/packages/quiver/lib/src/collection/delegates/queue.dart
index 1c85fc756851f7906a859109634d12afeccc46b6..58688f7c8c159c3bd3c1c33fb46aabd26fada3cd 100644
--- a/packages/quiver/lib/src/collection/delegates/queue.dart
+++ b/packages/quiver/lib/src/collection/delegates/queue.dart
@@ -14,18 +14,16 @@
part of quiver.collection;
-/**
- * An implementation of [Queue] that delegates all methods to another [Queue].
- * For instance you can create a FruitQueue like this :
- *
- * class FruitQueue extends DelegatingQueue<Fruit> {
- * final Queue<Fruit> _fruits = new Queue<Fruit>();
- *
- * Queue<Fruit> get delegate => _fruits;
- *
- * // custom methods
- * }
- */
+/// An implementation of [Queue] that delegates all methods to another [Queue].
+/// For instance you can create a FruitQueue like this :
+///
+/// class FruitQueue extends DelegatingQueue<Fruit> {
+/// final Queue<Fruit> _fruits = new Queue<Fruit>();
+///
+/// Queue<Fruit> get delegate => _fruits;
+///
+/// // custom methods
+/// }
abstract class DelegatingQueue<E> extends DelegatingIterable<E>
implements Queue<E> {
Queue<E> get delegate;
« no previous file with comments | « packages/quiver/lib/src/collection/delegates/map.dart ('k') | packages/quiver/lib/src/collection/delegates/set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698