Britbot
template<T >
void Britbot.PriorityQueue.HeapPriorityQueue< T >.Clear ( ) [inline]

Removes every node from the queue. O(n) (So, don't do this often!)

Implements Britbot.PriorityQueue.IPriorityQueue< T >.

Definition at line 69 of file HeapPriorityQueue.cs.

        {
            Array.Clear(this._nodes, 1, this.Count);
            this.Count = 0;
        }