atelier ~master (2018-09-29T13:22:57Z)
Dub
Repo
RingBuffer
core
ringbuffer
class
RingBuffer : Singleton!(RingBuffer!(T, Size))(
T
uint
Size
= 128u
) {
bool
isEmpty
[@property getter];
bool
isFull
[@property getter];
this
()
;
void
write
(
T
value
)
;
T
read
()
;
void
close
()
;
void
reset
()
;
}
Constructors
this
this
()
Members
Functions
close
void
close
()
read
T
read
()
reset
void
reset
()
write
void
write
(
T
value
)
Properties
isEmpty
bool
isEmpty
[@property getter]
isFull
bool
isFull
[@property getter]
Meta
Source
See Implementation
core
ringbuffer
modules
all
color
indexedarray
json
particle
particlefilter
ringbuffer
singleton
stream
tween
util
vec2
vec3
vec4