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

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

Issue 12094103: Added MappedListIterable/Iterator to implement map() on Lists. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding missing EmptyIteartor/Iterable 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
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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 buffer.add("${this[0]}"); 236 buffer.add("${this[0]}");
237 for (int i = 1; i < this.length; i++) { 237 for (int i = 1; i < this.length; i++) {
238 buffer.add(separator); 238 buffer.add(separator);
239 buffer.add("${this[i]}"); 239 buffer.add("${this[i]}");
240 } 240 }
241 } 241 }
242 return buffer.toString(); 242 return buffer.toString();
243 } 243 }
244 244
245 Iterable map(f(T element)) { 245 Iterable map(f(T element)) {
246 return IterableMixinWorkaround.map(this, f); 246 return IterableMixinWorkaround.mapList(this, f);
247 } 247 }
248 248
249 List mappedBy(f(T element)) { 249 List mappedBy(f(T element)) {
250 return IterableMixinWorkaround.mappedByList(this, f); 250 return IterableMixinWorkaround.mappedByList(this, f);
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
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 } 321 }
322 322
323 List<T> toList() { 323 List<T> toList() {
324 return new List<T>.from(this); 324 return new List<T>.from(this);
325 } 325 }
326 326
327 Set<T> toSet() { 327 Set<T> toSet() {
328 return new Set<T>.from(this); 328 return new Set<T>.from(this);
329 } 329 }
330 } 330 }
OLDNEW
« no previous file with comments | « runtime/lib/byte_array.dart ('k') | sdk/lib/_internal/compiler/implementation/lib/js_array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698