The Dequeue<(Of <(T>)>) type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| Dequeue<(Of <(T>)>) | Overloaded. |
Methods
| Name | Description | |
|---|---|---|
| Clear |
Deletes all entries from the collection
| |
| CopyTo |
Implementation of the ICollection.CopyTo function.
| |
| DequeueHead |
Retrieve and remove the current head
| |
| DequeueTail |
Retrieve and remove the current tail
| |
| EnqueueHead |
Add the given object to the collections head
| |
| EnqueueHeadRange |
Add the given collection to the dequeues head.
To preserve the order in the collection, the entries are
added in revers order.
| |
| EnqueueTail |
Add the given object to the collections tail
| |
| EnqueueTailRange |
Add the given collection to the dequeues tail
| |
| Equals | (Inherited from Object.) | |
| Finalize |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
| GetEnumerator |
Standard implementation.
| |
| GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
| MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
| SetSize |
Sets the collections capacity to newSize
| |
| ToString | (Inherited from Object.) | |
| TrimToSize |
Sets the capacity to Count.
|
Fields
Properties
| Name | Description | |
|---|---|---|
| Capacity |
The current amount of cells available to the dequeue
| |
| Count |
The current number of elements in the queue
| |
| GrowthFactor |
The current factor by which to grow the collection in case of expansion
| |
| Item |
Indexed access to all elements currently in the collection.
Indexing starts at 0 (head) and ends at Count-1 (tail).
| |
| Version |
The current version of the dequeue. The version is increased with every changing operation.
The main use is to invalidate all IEnumerators.
|