Files
sdk/pkg/sequence_zip/lib/sequence_zip.dart
T

18 lines
583 B
Dart

// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* Utilities for combining multiple streams or Iterables
* into a single stream or Iterable, respectively.
*
* This library defines no new APIs.
* It's a convenience library for using the APIs in the
* [iterable_zip](#iterable_zip) and
* [stream_zip](#stream_zip) libraries.
*/
library sequence_zip;
export "iterable_zip.dart";
export "stream_zip.dart";