| 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 Iterable mappedBy(Iterable<Object> source, f(o)) { | |
| 27 return new MappedIterable(source, f); | |
| 28 } | |
| 29 | |
| 30 static bool some(Iterable<Object> iterable, bool f(Object o)) { | 26 static bool some(Iterable<Object> iterable, bool f(Object o)) { |
| 31 for (final e in iterable) { | 27 for (final e in iterable) { |
| 32 if (f(e)) return true; | 28 if (f(e)) return true; |
| 33 } | 29 } |
| 34 return false; | 30 return false; |
| 35 } | 31 } |
| 36 | 32 |
| 37 static bool every(Iterable<Object> iterable, bool f(Object o)) { | 33 static bool every(Iterable<Object> iterable, bool f(Object o)) { |
| 38 for (final e in iterable) { | 34 for (final e in iterable) { |
| 39 if (!f(e)) return false; | 35 if (!f(e)) return false; |
| 40 } | 36 } |
| 41 return true; | 37 return true; |
| 42 } | 38 } |
| 43 | 39 |
| 44 static List where(Iterable<Object> source, | |
| 45 List<Object> destination, | |
| 46 bool f(o)) { | |
| 47 for (final e in source) { | |
| 48 if (f(e)) destination.add(e); | |
| 49 } | |
| 50 return destination; | |
| 51 } | |
| 52 | |
| 53 static bool isEmpty(Iterable<Object> iterable) { | 40 static bool isEmpty(Iterable<Object> iterable) { |
| 54 return !iterable.iterator.moveNext(); | 41 return !iterable.iterator.moveNext(); |
| 55 } | 42 } |
| 56 } | 43 } |
| OLD | NEW |