OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 part of "collection.dart"; | 5 part of "dart:collection"; |
6 | 6 |
7 /** | 7 /** |
8 * Base class for implementing a [Map]. | 8 * Base class for implementing a [Map]. |
9 * | 9 * |
10 * This class has a basic implementation of all but five of the members of | 10 * This class has a basic implementation of all but five of the members of |
11 * [Map]. | 11 * [Map]. |
12 * A basic `Map` class can be implemented by extending this class and | 12 * A basic `Map` class can be implemented by extending this class and |
13 * implementing `keys`, `operator[]`, `operator[]=`, `remove` and `clear`. | 13 * implementing `keys`, `operator[]`, `operator[]=`, `remove` and `clear`. |
14 * The remaining operations are implemented in terms of these five. | 14 * The remaining operations are implemented in terms of these five. |
15 * | 15 * |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 map[keyIterator.current] = valueIterator.current; | 366 map[keyIterator.current] = valueIterator.current; |
367 hasNextKey = keyIterator.moveNext(); | 367 hasNextKey = keyIterator.moveNext(); |
368 hasNextValue = valueIterator.moveNext(); | 368 hasNextValue = valueIterator.moveNext(); |
369 } | 369 } |
370 | 370 |
371 if (hasNextKey || hasNextValue) { | 371 if (hasNextKey || hasNextValue) { |
372 throw new ArgumentError("Iterables do not have same length."); | 372 throw new ArgumentError("Iterables do not have same length."); |
373 } | 373 } |
374 } | 374 } |
375 } | 375 } |
OLD | NEW |