Rename KeyedQueue to PairedQueue

This commit is contained in:
Michael Bradley 2025-01-09 00:03:01 +13:00
parent 17b544f8bc
commit 6e91aef421
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8
5 changed files with 21 additions and 21 deletions

View file

@ -47,7 +47,7 @@ class PureQueue[Data: Comparable](Queue[Data]):
"""
class KeyedQueue[Data, Priority: Comparable](Queue[Data]):
class PairedQueue[Data, Priority: Comparable](Queue[Data]):
"""
A min-queue that allows arbitrary data associated with some priority, allowing duplicates of both data and priority.
"""