Документация по Gambas 2
Development Environment Documentation
Documents
Language Index
Language Overviews
Lexicon
Компиляция & Установка
Последние изменения
ПРОЧТИ
Регистрация
Что переводить
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
Этот класс
создаваемый
.
Свойства
IsEmpty
property Read IsEmpty As
Boolean
Size
property Read Size As
Integer
Методы
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
)