| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 @SupportJsExtensionMethod() |
| 55 @JsPeerInterface(name: 'Array') |
| 54 abstract class List<E> implements Iterable<E>, EfficientLength { | 56 abstract class List<E> implements Iterable<E>, EfficientLength { |
| 55 /** | 57 /** |
| 56 * Creates a list of the given length. | 58 * Creates a list of the given length. |
| 57 * | 59 * |
| 58 * The created list is fixed-length if [length] is provided. | 60 * The created list is fixed-length if [length] is provided. |
| 59 * | 61 * |
| 60 * List fixedLengthList = new List(3); | 62 * List fixedLengthList = new List(3); |
| 61 * fixedLengthList.length; // 3 | 63 * fixedLengthList.length; // 3 |
| 62 * fixedLengthList.length = 1; // Error | 64 * fixedLengthList.length = 1; // Error |
| 63 * | 65 * |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 * as values. The `Map.keys` [Iterable] iterates the indices of this list | 477 * as values. The `Map.keys` [Iterable] iterates the indices of this list |
| 476 * in numerical order. | 478 * in numerical order. |
| 477 * | 479 * |
| 478 * List<String> words = ['fee', 'fi', 'fo', 'fum']; | 480 * List<String> words = ['fee', 'fi', 'fo', 'fum']; |
| 479 * Map<int, String> map = words.asMap(); | 481 * Map<int, String> map = words.asMap(); |
| 480 * map[0] + map[1]; // 'feefi'; | 482 * map[0] + map[1]; // 'feefi'; |
| 481 * map.keys.toList(); // [0, 1, 2, 3] | 483 * map.keys.toList(); // [0, 1, 2, 3] |
| 482 */ | 484 */ |
| 483 Map<int, E> asMap(); | 485 Map<int, E> asMap(); |
| 484 } | 486 } |
| OLD | NEW |