| Index: pkg/collection_helpers/lib/wrappers.dart
|
| diff --git a/pkg/collection_helpers/lib/wrappers.dart b/pkg/collection_helpers/lib/wrappers.dart
|
| index 36b9b033e13a2949ceee97e15838bd42915f8da7..6891eb49e6096299c0ea9994fff9a8426c987ca3 100644
|
| --- a/pkg/collection_helpers/lib/wrappers.dart
|
| +++ b/pkg/collection_helpers/lib/wrappers.dart
|
| @@ -4,12 +4,20 @@
|
|
|
| /**
|
| * Delegating wrappers for [Iterable], [List], [Set], [Queue] and [Map].
|
| + *
|
| + * Also adds unmodifiable views for `Set` and `Map`, and a fixed length
|
| + * view for `List`. The unmodifable list view from `dart:collection` is exported
|
| + * as well, just for completeness.
|
| */
|
| -library dart.collection_helper.wrappers;
|
| +library dart.collection_helpers.wrappers;
|
|
|
| import "dart:collection";
|
| import "dart:math" show Random;
|
|
|
| +export "dart:collection" show UnmodifiableListView;
|
| +
|
| +part "unmodifiable_wrappers.dart";
|
| +
|
| /**
|
| * Creates an [Iterable] that delegates all operations to a base iterable.
|
| *
|
|
|