Deque (gb.data)

The Deque (double-ended queue) is the backend for the Queue and Stack classes.

An explantion of deques can be found on Wikipedia

Esta clase es instanciable.

Propiedades
IsEmpty   property Read IsEmpty As Boolean
Size   property Read Size As Integer

Métodos
Clear   Sub Clear ( )
Copy   Return a deep copy of the Deque.
PeekBack   Function PeekBack ( ) As Variant
PeekFront   Function PeekFront ( ) As Variant
PopBack   Function PopBack ( ) As Variant
PopFront   Function PopFront ( ) As Variant
PushBack   Sub PushBack ( Value As Variant )
PushFront   Sub PushFront ( Value As Variant )