| Index: pkg/collection_helpers/lib/all.dart
|
| diff --git a/pkg/collection_helpers/lib/all.dart b/pkg/collection_helpers/lib/all.dart
|
| index 5dba61b2378dae8e9f5ff21fcf96256bdbe6501c..3658cf1a4b8ba2f2231db06b23fffb0e402c62c0 100644
|
| --- a/pkg/collection_helpers/lib/all.dart
|
| +++ b/pkg/collection_helpers/lib/all.dart
|
| @@ -10,11 +10,13 @@
|
| * - `algorithms.dart`: Algorithms that work on lists (shuffle, binary search
|
| * and various sorting algorithms).
|
| * - `equality.dart`: Different notions of equality of collections.
|
| + * - `typed_buffers.dart`: Growable typed data lists.
|
| * - `wrappers.dart`: Wrapper classes that delegate to a collection object.
|
| * Includes unmodifiable views of collections.
|
| */
|
| library dart.collection_helper;
|
|
|
| export "algorithms.dart";
|
| -export "wrappers.dart";
|
| export "equality.dart";
|
| +export "typed_buffers.dart";
|
| +export "wrappers.dart";
|
|
|