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

Unified Diff: pkg/sequence_zip/lib/sequence_zip.dart

Issue 113883002: Create associated packages for the dart:collection and dart:async libs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update SDK dependency to 1.0.0 Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/sequence_zip/lib/iterable_zip.dart ('k') | pkg/sequence_zip/lib/stream_zip.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/sequence_zip/lib/sequence_zip.dart
diff --git a/pkg/sequence_zip/lib/sequence_zip.dart b/pkg/sequence_zip/lib/sequence_zip.dart
index 2f0d7e6c4fd02a48efb8c41b0888fc0f54699989..9863a30ae3a1cbbc334dbf381c2fb0b6254cfa4b 100644
--- a/pkg/sequence_zip/lib/sequence_zip.dart
+++ b/pkg/sequence_zip/lib/sequence_zip.dart
@@ -3,15 +3,11 @@
// 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.
+ * Please use the libraries `package:collection/iterable_zip.dart` for iterable zipping
+ * or `package:async/stream_zip.dart` for stream zipping.
*/
+@deprecated
library sequence_zip;
-export "iterable_zip.dart";
-export "stream_zip.dart";
+export "iterable_zip";
+export "stream_zip";
« no previous file with comments | « pkg/sequence_zip/lib/iterable_zip.dart ('k') | pkg/sequence_zip/lib/stream_zip.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698