Click or drag to resize

QueueT Class

Inheritance Hierarchy
SystemObject
  System.Collections.GenericQueueT
    QuickGraph.CollectionsQueueT

Namespace:  QuickGraph.Collections
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public sealed class Queue<T> : Queue<T>, 
	IQueue<T>

Type Parameters

T

The QueueT type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
Gets the number of elements contained in the QueueT.
(Inherited from QueueT.)
Top
Methods
  NameDescription
Public methodClear
Removes all objects from the QueueT.
(Inherited from QueueT.)
Public methodContains
Determines whether an element is in the QueueT.
(Inherited from QueueT.)
Public methodCopyTo
Copies the QueueT elements to an existing one-dimensional Array, starting at the specified array index.
(Inherited from QueueT.)
Public methodDequeue
Removes and returns the object at the beginning of the QueueT.
(Inherited from QueueT.)
Public methodEnqueue
Adds an object to the end of the QueueT.
(Inherited from QueueT.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through the QueueT.
(Inherited from QueueT.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodPeek
Returns the object at the beginning of the QueueT without removing it.
(Inherited from QueueT.)
Public methodToArray
Copies the QueueT elements to a new array.
(Inherited from QueueT.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTrimExcess
Sets the capacity to the actual number of elements in the QueueT, if that number is less than 90 percent of current capacity.
(Inherited from QueueT.)
Top
See Also