| 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 dart.core; | 5 part of dart.core; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * An indexable collection of objects with a length. | 8 * An indexable collection of objects with a length. |
| 9 * | 9 * |
| 10 * Subclasses of this class implement different kinds of lists. | 10 * Subclasses of this class implement different kinds of lists. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 * indices—that is, changing the list's length—between iteration | 41 * indices—that is, changing the list's length—between iteration |
| 42 * steps causes a [ConcurrentModificationError]. This means that only growable | 42 * steps causes a [ConcurrentModificationError]. This means that only growable |
| 43 * lists can throw ConcurrentModificationError. If the length changes | 43 * lists can throw ConcurrentModificationError. If the length changes |
| 44 * temporarily and is restored before continuing the iteration, the iterator | 44 * temporarily and is restored before continuing the iteration, the iterator |
| 45 * does not detect it. | 45 * does not detect it. |
| 46 * | 46 * |
| 47 * It is generally not allowed to modify the list's length (adding or removing | 47 * It is generally not allowed to modify the list's length (adding or removing |
| 48 * elements) while an operation on the list is being performed, | 48 * elements) while an operation on the list is being performed, |
| 49 * for example during a call to [forEach] or [sort]. | 49 * for example during a call to [forEach] or [sort]. |
| 50 * Changing the list's length while it is being iterated, either by iterating it | 50 * Changing the list's length while it is being iterated, either by iterating it |
| 51 * directly or through iterating an `Iterable` that is backed by the list, will | 51 * directly or through iterating an [Iterable] that is backed by the list, will |
| 52 * break the iteration. | 52 * break the iteration. |
| 53 */ | 53 */ |
| 54 abstract class List<E> implements Iterable<E>, EfficientLength { | 54 abstract class List<E> implements Iterable<E>, EfficientLength { |
| 55 /** | 55 /** |
| 56 * Creates a list of the given length. | 56 * Creates a list of the given length. |
| 57 * | 57 * |
| 58 * The created list is fixed-length if [length] is provided. | 58 * The created list is fixed-length if [length] is provided. |
| 59 * | 59 * |
| 60 * List fixedLengthList = new List(3); | 60 * List fixedLengthList = new List(3); |
| 61 * fixedLengthList.length; // 3 | 61 * fixedLengthList.length; // 3 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 * as values. The `Map.keys` [Iterable] iterates the indices of this list | 459 * as values. The `Map.keys` [Iterable] iterates the indices of this list |
| 460 * in numerical order. | 460 * in numerical order. |
| 461 * | 461 * |
| 462 * List<String> words = ['fee', 'fi', 'fo', 'fum']; | 462 * List<String> words = ['fee', 'fi', 'fo', 'fum']; |
| 463 * Map<int, String> map = words.asMap(); | 463 * Map<int, String> map = words.asMap(); |
| 464 * map[0] + map[1]; // 'feefi'; | 464 * map[0] + map[1]; // 'feefi'; |
| 465 * map.keys.toList(); // [0, 1, 2, 3] | 465 * map.keys.toList(); // [0, 1, 2, 3] |
| 466 */ | 466 */ |
| 467 Map<int, E> asMap(); | 467 Map<int, E> asMap(); |
| 468 } | 468 } |
| OLD | NEW |