2985f3462e
You can use new IterableZip([it1, it2, it3]) to generate an iterable of three-element lists, one from each source iterable, as long as all three source iterables have an element. Similar functionality for streams is provided by StreamZip. R=floitsch@google.com Review URL: https://codereview.chromium.org//18015002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@24835 260f80e4-7a28-3924-810f-c04153c831b5
10 lines
291 B
YAML
10 lines
291 B
YAML
name: sequence_zip
|
|
author: "Dart Team <misc@dartlang.org>"
|
|
homepage: http://www.dartlang.org
|
|
description: >
|
|
"Zip" functionality on iterables and streams.
|
|
Combines multiple iterables into a single iterable of tuples of values,
|
|
and similar for Streams.
|
|
dev_dependencies:
|
|
unittest: any
|