keyvalues ~master (2016-04-04T14:09:12Z)
Dub
Repo
Stack
keyvalues
stack
Undocumented in source.
struct
Stack (
Type
) {
Type
[]
data
;
size_t
index
;
this
();
this
(size_t initialSize);
void
push
(Type datum);
Type
pop
();
Type
top
[@property getter];
bool
empty
[@property getter];
}
Constructors
this
this
()
Undocumented in source.
this
this
(size_t initialSize)
Undocumented in source.
Members
Functions
pop
Type
pop
()
Undocumented in source. Be warned that the author may not have intended to support it.
push
void
push
(Type datum)
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
empty
bool
empty
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
top
Type
top
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
data
Type
[]
data
;
Undocumented in source.
index
size_t
index
;
Undocumented in source.
Meta
Source
See Implementation
keyvalues
stack
structs
Stack