ArrayQueue is a queue implementation backed by an array.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll)
Version: 2008.1.0.0 (2008.1.0.0)

Syntax

C#
[SerializableAttribute]
public class ArrayQueue<T>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class ArrayQueue(Of T)
Visual C++
[SerializableAttribute]
generic<typename T>
public ref class ArrayQueue

Type Parameters

T
Type associated with this instance.

Remarks

Queue entries are allowed to wrap around array boundaries.

Inheritance Hierarchy

System..::.Object
  RightEdge.Common..::.ArrayQueue<(Of <(T>)>)

See Also