| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 html; | 5 part of html; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * The [Collections] class implements static methods useful when | 8 * The [Collections] class implements static methods useful when |
| 9 * writing a class that implements [Collection] and the [iterator] | 9 * writing a class that implements [Collection] and the [iterator] |
| 10 * method. | 10 * method. |
| 11 */ | 11 */ |
| 12 class _Collections { | 12 class _Collections { |
| 13 static bool contains(Iterable<Object> iterable, Object element) { | 13 static bool contains(Iterable<Object> iterable, Object element) { |
| 14 for (final e in iterable) { | 14 for (final e in iterable) { |
| 15 if (e == element) return true; | 15 if (e == element) return true; |
| 16 } | 16 } |
| 17 return false; | 17 return false; |
| 18 } | 18 } |
| 19 | 19 |
| 20 static void forEach(Iterable<Object> iterable, void f(Object o)) { | 20 static void forEach(Iterable<Object> iterable, void f(Object o)) { |
| 21 for (final e in iterable) { | 21 for (final e in iterable) { |
| 22 f(e); | 22 f(e); |
| 23 } | 23 } |
| 24 } | 24 } |
| 25 | 25 |
| 26 static List mappedBy(Iterable<Object> source, | 26 static Iterable mappedBy(Iterable<Object> source, f(o)) { |
| 27 List<Object> destination, | 27 return new MappedIterable(source, f); |
| 28 f(o)) { | |
| 29 for (final e in source) { | |
| 30 destination.add(f(e)); | |
| 31 } | |
| 32 return destination; | |
| 33 } | 28 } |
| 34 | 29 |
| 35 static bool some(Iterable<Object> iterable, bool f(Object o)) { | 30 static bool some(Iterable<Object> iterable, bool f(Object o)) { |
| 36 for (final e in iterable) { | 31 for (final e in iterable) { |
| 37 if (f(e)) return true; | 32 if (f(e)) return true; |
| 38 } | 33 } |
| 39 return false; | 34 return false; |
| 40 } | 35 } |
| 41 | 36 |
| 42 static bool every(Iterable<Object> iterable, bool f(Object o)) { | 37 static bool every(Iterable<Object> iterable, bool f(Object o)) { |
| 43 for (final e in iterable) { | 38 for (final e in iterable) { |
| 44 if (!f(e)) return false; | 39 if (!f(e)) return false; |
| 45 } | 40 } |
| 46 return true; | 41 return true; |
| 47 } | 42 } |
| 48 | 43 |
| 49 static List where(Iterable<Object> source, | 44 static List where(Iterable<Object> source, |
| 50 List<Object> destination, | 45 List<Object> destination, |
| 51 bool f(o)) { | 46 bool f(o)) { |
| 52 for (final e in source) { | 47 for (final e in source) { |
| 53 if (f(e)) destination.add(e); | 48 if (f(e)) destination.add(e); |
| 54 } | 49 } |
| 55 return destination; | 50 return destination; |
| 56 } | 51 } |
| 57 | 52 |
| 58 static bool isEmpty(Iterable<Object> iterable) { | 53 static bool isEmpty(Iterable<Object> iterable) { |
| 59 return !iterable.iterator.moveNext(); | 54 return !iterable.iterator.moveNext(); |
| 60 } | 55 } |
| 61 } | 56 } |
| OLD | NEW |