dart-sdk/sdk/lib/collection
Lasse R.H. Nielsen ed3824a220 Tweaks, refactoring and updates on DoubleLinkedQueue.
It's a badly designed class, but this change makes it slightly better.
(We should consider moving it to package:collection and removing it from
the platform libraries. Eventually.)

The changes decouples the public `DoubleLinkedQueueEntry` class from
the actual queue implementation classes, avoiding the latter having
to share a generic `_Link<DoubleLinkedQueueEntry>` interface
which would force them to do otherwise unnecessary casts.

The public class should have been abstract, but isn't.
It's mainly used as the API of the entries exposed by DoubleLinkedQueue,
but it can also be used by itself to build double-linked lists that are
not part of a Queue, and the class can be extended.
If anyone does either, it should keep working, so it needs to be a concrete,
self-contained class with a generative constructor.

That class is moved to dart:_internal to avoid its private
implementation fields from interfering with the queue implementation classes,
which have similar fields, but can now have them at different types.
That's a hack, but it works.

The internal implementation of the DoubleLinkedQueue and its entries
are updated to better follow current programming idioms, and avoids
having fields on classes which don't need them.

Also fixes #27920
(`clear`ing a list now detaches each entry from the list so later `.contains`
won't give the wrong answer).

And moves queue tests from tests/corelib to tests/lib/collection,
since Queue isn't exposed by `dart:core`.

BUG= https://github.com/dart-lang/sdk/issues/27920

Change-Id: Ia3bb340a75886de160cc0e449947e8e7ee587061
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/211265
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
2021-08-31 12:44:39 +00:00
..
collection.dart Tweaks, refactoring and updates on DoubleLinkedQueue. 2021-08-31 12:44:39 +00:00
collection_sources.gni
collections.dart
hash_map.dart Update dart:collection documentation for null safety. 2021-01-13 12:05:14 +00:00
hash_set.dart Update dart:collection documentation for null safety. 2021-01-13 12:05:14 +00:00
iterable.dart Change parameters named f to something longer on Iterable. 2021-05-10 15:03:20 +00:00
iterator.dart
linked_hash_map.dart Update dart:collection documentation for null safety. 2021-01-13 12:05:14 +00:00
linked_hash_set.dart Update dart:collection documentation for null safety. 2021-01-13 12:05:14 +00:00
linked_list.dart Update dart:collection documentation for null safety. 2021-01-13 12:05:14 +00:00
list.dart Update SDK documentation for new lookup code. 2021-06-28 17:33:30 +00:00
maps.dart Fix typo in unmodifiable map mixin return type. 2020-11-24 18:59:08 +00:00
queue.dart Tweaks, refactoring and updates on DoubleLinkedQueue. 2021-08-31 12:44:39 +00:00
set.dart Add missing @Since markers on unmodifiable set additions. 2020-12-15 18:48:41 +00:00
splay_tree.dart Add efficient entries and keys.contains to SplayTreeMap. 2021-03-22 13:20:13 +00:00