Namespace CounterpointCollective.Collections
Classes
- CoalescingQueue
A specialized coalescing queue that stores and dispatches instances of reference types. This concrete implementation is intended for scenarios where all values handled by the queue are reference types. For higher efficiency it is usually preferable to use the generic CoalescingQueue<TContainer> directly with a struct container type, as this avoids heap allocations and boxing.
Structs
- CoalescingQueueNode<TContainer, TValue>
Represents a node in a CoalescingQueue for an item of type
TValue.