Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: sdk/lib/html/html_common/collections.dart

Issue 11316113: Creating a common library for all DOM types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merging with latest from tree. Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/html/docs/svg_docs.json ('k') | sdk/lib/html/html_common/conversions.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_common;
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);
(...skipping 29 matching lines...) Expand all
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().hasNext;
60 } 60 }
61 } 61 }
OLDNEW
« no previous file with comments | « sdk/lib/html/docs/svg_docs.json ('k') | sdk/lib/html/html_common/conversions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698