Click or drag to resize

PriorityQueueTTrimExcess Method

Namespace:  Ookii.Collections.Generic
Assembly:  Ookii.Collections.Generic (in Ookii.Collections.Generic.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void TrimExcess()
Remarks

This method can be used to minimize a collection's memory overhead if no new elements will be added to the collection. The cost of reallocating and copying a large PriorityQueueT can be considerable, however, so the TrimExcess method does nothing if the list is at more than 90 percent of capacity. This avoids incurring a large reallocation cost for a relatively small gain.

Note Note
The current threshold of 90 percent it depends on ListT and might change in future releases of the .Net Framework.

This method is an O(n) operation, where n is Count.

To reset a PriorityQueueT to its initial state, call the Clear method before calling the TrimExcess method. Trimming an empty PriorityQueueT sets the capacity of the PriorityQueueT to the default capacity.

The capacity can also be set using the Capacity property.

See Also