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

Side by Side Diff: sdk/lib/collection/iterator.dart

Issue 2974433002: Remaining private libs (Closed)
Patch Set: It's html_common Created 3 years, 5 months 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
« no previous file with comments | « sdk/lib/collection/iterable.dart ('k') | sdk/lib/collection/linked_hash_map.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) 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 part of "collection.dart"; 5 part of "dart:collection";
6 6
7 /** 7 /**
8 * The [HasNextIterator] class wraps an [Iterator] and provides methods to 8 * The [HasNextIterator] class wraps an [Iterator] and provides methods to
9 * iterate over an object using `hasNext` and `next`. 9 * iterate over an object using `hasNext` and `next`.
10 * 10 *
11 * An [HasNextIterator] does not implement the [Iterator] interface. 11 * An [HasNextIterator] does not implement the [Iterator] interface.
12 */ 12 */
13 class HasNextIterator<E> { 13 class HasNextIterator<E> {
14 static const int _HAS_NEXT_AND_NEXT_IN_CURRENT = 0; 14 static const int _HAS_NEXT_AND_NEXT_IN_CURRENT = 0;
15 static const int _NO_NEXT = 1; 15 static const int _NO_NEXT = 1;
(...skipping 20 matching lines...) Expand all
36 } 36 }
37 37
38 void _move() { 38 void _move() {
39 if (_iterator.moveNext()) { 39 if (_iterator.moveNext()) {
40 _state = _HAS_NEXT_AND_NEXT_IN_CURRENT; 40 _state = _HAS_NEXT_AND_NEXT_IN_CURRENT;
41 } else { 41 } else {
42 _state = _NO_NEXT; 42 _state = _NO_NEXT;
43 } 43 }
44 } 44 }
45 } 45 }
OLDNEW
« no previous file with comments | « sdk/lib/collection/iterable.dart ('k') | sdk/lib/collection/linked_hash_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698