toggle menu
KAHelpers
androidJvm
switch theme
search in API
dataStructuresAndAlgorithms
/
dev.funkymuse.datastructuresandalgorithms.ringBuffer
/
RingBuffer
Ring
Buffer
class
RingBuffer
<
T
>
(
size
:
Int
)
Members
Constructors
Ring
Buffer
Link copied to clipboard
constructor
(
size
:
Int
)
Properties
count
Link copied to clipboard
val
count
:
Int
first
Link copied to clipboard
val
first
:
T
?
is
Empty
Link copied to clipboard
val
isEmpty
:
Boolean
is
Full
Link copied to clipboard
val
isFull
:
Boolean
Functions
read
Link copied to clipboard
fun
read
(
)
:
T
?
to
String
Link copied to clipboard
open
override
fun
toString
(
)
:
String
write
Link copied to clipboard
fun
write
(
element
:
T
)
:
Boolean