Документация по 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
Queue (gb.data)
A Queue is a FIFO datatype: all elements follow the pattern "first in, first out".
Imagine this datatype like any other queue, e.g. in the supermarket.
Этот класс
создаваемый
.
Свойства
IsEmpty
property Read IsEmpty As
Boolean
Returns
TRUE
if the
Queue
is empty.
Size
property Read Size As
Integer
Методы
Clear
Sub Clear ( )
Copy
Return a deep copy of the Queue.
Deq
Function Deq ( ) As
Variant
Dequeue
Function Dequeue ( ) As
Variant
Enq
Sub Enq ( Value As
Variant
)
Enqueue
Sub Enqueue ( Value As
Variant
)
Peek
Function Peek ( ) As
Variant