gccjitd ~master (2018-07-19T06:24:39Z)
Home
Dub
Repo
Result
toy
combinator
// Combinators ///// All combinators return a result.
struct
Result {
Object
[]
values
;
int
pos
;
bool
inited
;
this
(Object value, int pos);
this
(Object[] values, int pos);
}
Constructors
this
this
(Object value, int pos)
Undocumented in source.
this
this
(Object[] values, int pos)
Undocumented in source.
Members
Variables
inited
bool
inited
;
Undocumented in source.
pos
int
pos
;
Undocumented in source.
values
Object
[]
values
;
Undocumented in source.
Meta
Source
See Implementation
toy
combinator
classes
Alternate
Concat
Expr
Lazy
Optional
Parser
Phrase
Process
Repetition
Reserved
TokenTag
structs
Result
// Combinators ///// All combinators return a result.