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

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

Powered by Google App Engine
This is Rietveld 408576698