queue
0.2.0
queue
/
io.klibs.collections
Package-level
declarations
Types
Functions
Types
Queue
Link copied to clipboard
class
Queue
<
T
>
:
Collection
<
T
>
,
Iterator
<
T
>
Example:
Functions
max
Link copied to clipboard
inline
fun
max
(
a
:
Int
,
b
:
Int
)
:
Int
min
Link copied to clipboard
inline
fun
min
(
a
:
Int
,
b
:
Int
)
:
Int
queue
Of
Link copied to clipboard
fun
<
T
>
queueOf
(
vararg
values
:
T
)
:
Queue
<
T
>
fun
<
T
>
queueOf
(
values
:
Iterable
<
T
>
)
:
Queue
<
T
>
Creates a new
Queue
instance wrapping the given values.