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

Side by Side Diff: pkg/collection/lib/wrappers.dart

Issue 350183010: Add a CanonicalizedMap class to pkg/collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/collection/lib/src/utils.dart ('k') | pkg/collection/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * Delegating wrappers for [Iterable], [List], [Set], [Queue] and [Map]. 6 * Delegating wrappers for [Iterable], [List], [Set], [Queue] and [Map].
7 * 7 *
8 * Also adds unmodifiable views for `Set` and `Map`, and a fixed length 8 * Also adds unmodifiable views for `Set` and `Map`, and a fixed length
9 * view for `List`. The unmodifable list view from `dart:collection` is exported 9 * view for `List`. The unmodifable list view from `dart:collection` is exported
10 * as well, just for completeness. 10 * as well, just for completeness.
11 */ 11 */
12 library dart.pkg.collection.wrappers; 12 library dart.pkg.collection.wrappers;
13 13
14 import "dart:collection"; 14 import "dart:collection";
15 import "dart:math" show Random; 15 import "dart:math" show Random;
16 16
17 export "dart:collection" show UnmodifiableListView; 17 export "dart:collection" show UnmodifiableListView;
18 18
19 export "src/canonicalized_map.dart";
19 part "src/unmodifiable_wrappers.dart"; 20 part "src/unmodifiable_wrappers.dart";
20 21
21 /** 22 /**
22 * A base class for delegating iterables. 23 * A base class for delegating iterables.
23 * 24 *
24 * Subclasses can provide a [_base] that should be delegated to. Unlike 25 * Subclasses can provide a [_base] that should be delegated to. Unlike
25 * [DelegatingIterable], this allows the base to be created on demand. 26 * [DelegatingIterable], this allows the base to be created on demand.
26 */ 27 */
27 abstract class _DelegatingIterableBase<E> implements Iterable<E> { 28 abstract class _DelegatingIterableBase<E> implements Iterable<E> {
28 Iterable<E> get _base; 29 Iterable<E> get _base;
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 * Returns a new set which contains all the elements of [this] and [other]. 561 * Returns a new set which contains all the elements of [this] and [other].
561 * 562 *
562 * That is, the returned set contains all the elements of this [Set] and all 563 * That is, the returned set contains all the elements of this [Set] and all
563 * the elements of [other]. 564 * the elements of [other].
564 * 565 *
565 * Note that the returned set will use the default equality operation, which 566 * Note that the returned set will use the default equality operation, which
566 * may be different than the equality operation [this] uses. 567 * may be different than the equality operation [this] uses.
567 */ 568 */
568 Set<V> union(Set<V> other) => toSet()..addAll(other); 569 Set<V> union(Set<V> other) => toSet()..addAll(other);
569 } 570 }
OLDNEW
« no previous file with comments | « pkg/collection/lib/src/utils.dart ('k') | pkg/collection/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698