voxelman v0.9.0 (2022-05-10T16:23:35Z)
Dub
Repo
Stack
voxelman
text
lexer
Undocumented in source.
struct
Stack (
T
) {
import
std
.
array
;
;
T
[]
data
;
bool
empty
[@property getter];
size_t
length
[@property getter];
void
push
(T val);
T
pop
();
}
Members
Functions
pop
T
pop
()
Undocumented in source. Be warned that the author may not have intended to support it.
push
void
push
(T val)
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.
length
size_t
length
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
data
T
[]
data
;
Undocumented in source.
Meta
Source
See Implementation
voxelman
text
lexer
aliases
StringLexer
enums
TokenType
functions
isDigit
isHexDigit
structs
CharStream
Lexer
Stack
StreamPos
Token
TokenMatcher