Class SimplePriorityQueue<TItem>
A simplified priority queue implementation. Is stable, auto-resizes, and thread-safe, at the cost of being slightly slower than FastPriorityQueue This class is kept here for backwards compatibility. It's recommended you use Simple
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Syntax
public class SimplePriorityQueue<TItem> : SimplePriorityQueue<TItem, float>, IPriorityQueue<TItem, float>
Type Parameters
TItem
The type to enqueue |