diff --git a/lib/collection.dart b/lib/collection.dart index f6f4ae3..326e947 100644 --- a/lib/collection.dart +++ b/lib/collection.dart @@ -2,6 +2,11 @@ // 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 that expand on the collections APIs in the `dart:core` library. +/// +/// {@youtube 560 315 https://www.youtube.com/watch?v=Ymw9xfRucK0} +library collection; + export 'src/algorithms.dart' show binarySearch, insertionSort, lowerBound, mergeSort, shuffle, reverse; export 'src/boollist.dart';