Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Add package docs with package-of-the-week video #316

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/collection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down