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

Side by Side Diff: runtime/lib/growable_array.dart

Issue 12188011: Added expand method to iterables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « runtime/lib/byte_array.dart ('k') | samples/swarm/swarm_ui_lib/observable/observable.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 class _GrowableObjectArray<T> implements List<T> { 5 class _GrowableObjectArray<T> implements List<T> {
6 factory _GrowableObjectArray._uninstantiable() { 6 factory _GrowableObjectArray._uninstantiable() {
7 throw new UnsupportedError( 7 throw new UnsupportedError(
8 "GrowableObjectArray can only be allocated by the VM"); 8 "GrowableObjectArray can only be allocated by the VM");
9 } 9 }
10 10
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 } 251 }
252 252
253 reduce(initialValue, combine(previousValue, T element)) { 253 reduce(initialValue, combine(previousValue, T element)) {
254 return IterableMixinWorkaround.reduce(this, initialValue, combine); 254 return IterableMixinWorkaround.reduce(this, initialValue, combine);
255 } 255 }
256 256
257 Iterable<T> where(bool f(T element)) { 257 Iterable<T> where(bool f(T element)) {
258 return IterableMixinWorkaround.where(this, f); 258 return IterableMixinWorkaround.where(this, f);
259 } 259 }
260 260
261 Iterable expand(Iterable f(T element)) {
262 return IterableMixinWorkaround.expand(this, f);
263 }
264
261 Iterable<T> take(int n) { 265 Iterable<T> take(int n) {
262 return IterableMixinWorkaround.takeList(this, n); 266 return IterableMixinWorkaround.takeList(this, n);
263 } 267 }
264 268
265 Iterable<T> takeWhile(bool test(T value)) { 269 Iterable<T> takeWhile(bool test(T value)) {
266 return IterableMixinWorkaround.takeWhile(this, test); 270 return IterableMixinWorkaround.takeWhile(this, test);
267 } 271 }
268 272
269 Iterable<T> skip(int n) { 273 Iterable<T> skip(int n) {
270 return IterableMixinWorkaround.skipList(this, n); 274 return IterableMixinWorkaround.skipList(this, n);
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 } 325 }
322 326
323 List<T> toList() { 327 List<T> toList() {
324 return new List<T>.from(this); 328 return new List<T>.from(this);
325 } 329 }
326 330
327 Set<T> toSet() { 331 Set<T> toSet() {
328 return new Set<T>.from(this); 332 return new Set<T>.from(this);
329 } 333 }
330 } 334 }
OLDNEW
« no previous file with comments | « runtime/lib/byte_array.dart ('k') | samples/swarm/swarm_ui_lib/observable/observable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698