phobos-next v0.3.8 (2020-08-04T23:11:21Z)
Home
Dub
Repo
Stack
nxt
appender_stack
Stack.
struct
Stack (
T
) {
import
std
.
array
:
Appender
,
appender
;
;
import
std
.
array
:
Appender
,
appender
;
;
Appender
!(
T
[])
_app
;
inout
(
T
)
top
[@property getter];
bool
empty
[@property getter];
void
pop
();
T
backPop
();
void
push
(T t);
}
Members
Functions
backPop
T
backPop
()
Undocumented in source. Be warned that the author may not have intended to support it.
pop
void
pop
()
Undocumented in source. Be warned that the author may not have intended to support it.
push
void
push
(T t)
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
inout
(
T
)
top
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
_app
Appender
!(
T
[])
_app
;
Undocumented in source.
See Also
http://forum.dlang.org/thread/wswbtzakdvpgaebuhbom
@forum.dlang.org
Meta
Source
See Implementation
nxt
appender_stack
structs
Stack
Stack.