Documentació de Gambas (versió en desenvolupament)
Compilació i instaŀlació
Components
gb
gb.desktop
gb.form
gb.qt4
gb.web
Documents
How To's
Language Index
Language Overviews
Lèxic
Missatges d'Error
ar
ca
cs
de
en
eo
es
fa
fr
hu
id
it
ja
ko
mk
nl
pl
pt
pt_BR
ru
sq
tr
vi
zh
zh_TW
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
This class is
creatable
.
Properties
IsEmpty
property Read IsEmpty As
Boolean
Size
property Read Size As
Integer
Methods
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
)