gccjitd v0.1.0 (2015-01-25T20:32:33Z)
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.