| 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. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 static List where(Iterable<Object> source, | 49 static List where(Iterable<Object> source, |
| 50 List<Object> destination, | 50 List<Object> destination, |
| 51 bool f(o)) { | 51 bool f(o)) { |
| 52 for (final e in source) { | 52 for (final e in source) { |
| 53 if (f(e)) destination.add(e); | 53 if (f(e)) destination.add(e); |
| 54 } | 54 } |
| 55 return destination; | 55 return destination; |
| 56 } | 56 } |
| 57 | 57 |
| 58 static bool isEmpty(Iterable<Object> iterable) { | 58 static bool isEmpty(Iterable<Object> iterable) { |
| 59 return !iterable.iterator().hasNext; | 59 return !iterable.iterator.moveNext(); |
| 60 } | 60 } |
| 61 } | 61 } |
| OLD | NEW |