Method Step
Step(Int32)
Performs lookup in transitions, assuming determinism.
Declaration
public virtual State Step(int c)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | c | Codepoint to look up. |
Returns
Type | Description |
---|---|
State | Destination state, |
See Also
Step(Int32, ICollection<State>)
Performs lookup in transitions, allowing nondeterminism.
Declaration
public virtual void Step(int c, ICollection<State> dest)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | c | Codepoint to look up. |
ICollection<State> | dest | Collection where destination states are stored. |