| 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 /** | 5 /** |
| 6 * The [Collections] class implements static methods useful when | 6 * The [Collections] class implements static methods useful when |
| 7 * writing a class that implements [Collection] and the [iterator] | 7 * writing a class that implements [Collection] and the [iterator] |
| 8 * method. | 8 * method. |
| 9 */ | 9 */ |
| 10 class Collections { | 10 class Collections { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 return false; | 28 return false; |
| 29 } | 29 } |
| 30 | 30 |
| 31 static bool every(Iterable iterable, bool f(o)) { | 31 static bool every(Iterable iterable, bool f(o)) { |
| 32 for (final e in iterable) { | 32 for (final e in iterable) { |
| 33 if (!f(e)) return false; | 33 if (!f(e)) return false; |
| 34 } | 34 } |
| 35 return true; | 35 return true; |
| 36 } | 36 } |
| 37 | 37 |
| 38 static List mappedBy(Iterable source, List destination, f(o)) { | |
| 39 for (final e in source) { | |
| 40 destination.add(f(e)); | |
| 41 } | |
| 42 return destination; | |
| 43 } | |
| 44 | |
| 45 static Dynamic reduce(Iterable iterable, | 38 static Dynamic reduce(Iterable iterable, |
| 46 Dynamic initialValue, | 39 Dynamic initialValue, |
| 47 Dynamic combine(Dynamic previousValue, element)) { | 40 Dynamic combine(Dynamic previousValue, element)) { |
| 48 for (final element in iterable) { | 41 for (final element in iterable) { |
| 49 initialValue = combine(initialValue, element); | 42 initialValue = combine(initialValue, element); |
| 50 } | 43 } |
| 51 return initialValue; | 44 return initialValue; |
| 52 } | 45 } |
| 53 | 46 |
| 54 static List where(Iterable source, List destination, bool f(o)) { | 47 static List where(Iterable source, List destination, bool f(o)) { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 * Returns true if the specified collection contains the specified object | 148 * Returns true if the specified collection contains the specified object |
| 156 * reference. | 149 * reference. |
| 157 */ | 150 */ |
| 158 static _containsRef(Collection c, Object ref) { | 151 static _containsRef(Collection c, Object ref) { |
| 159 for (var e in c) { | 152 for (var e in c) { |
| 160 if (e === ref) return true; | 153 if (e === ref) return true; |
| 161 } | 154 } |
| 162 return false; | 155 return false; |
| 163 } | 156 } |
| 164 } | 157 } |
| OLD | NEW |