Files
sdk/pkg/collection/lib/collection.dart
T
nweiz@google.com 75a0128a52 Add a QueueList class to the collection package.
This class is based on the ListQueue implementation and implements both the
Queue and List interfaces.

R=lrn@google.com

Review URL: https://codereview.chromium.org//660373002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41467 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-03 20:39:26 +00:00

27 lines
1.0 KiB
Dart

// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// 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.
/**
* Exports all the individual parts of the collection-helper library.
*
* The sub-libraries of this package are:
*
* - `algorithms.dart`: Algorithms that work on lists (shuffle, binary search
* and various sorting algorithms).
* - `equality.dart`: Different notions of equality of collections.
* - `iterable_zip.dart`: Combining multiple iterables into one.
* - `priority_queue.dart`: Priority queue type and implementations.
* - `wrappers.dart`: Wrapper classes that delegate to a collection object.
* Includes unmodifiable views of collections.
*/
library dart.pkg.collection;
export "algorithms.dart";
export "equality.dart";
export "iterable_zip.dart";
export "priority_queue.dart";
export "src/canonicalized_map.dart";
export "src/queue_list.dart";
export "wrappers.dart";