C# Class Yaml.LookaheadBuffer

The lookahead buffer, used by the buffer layer in the parser
Datei anzeigen Open project: rs-services/RightGridWindowsImplementation

Public Methods

Method Description
Append ( char c ) : void

Append a character to the buffer

Clear ( ) : void

Reset (clear) the buffer

ForgetThePast ( ) : void

Remove characters from the buffer before the current character

Next ( ) : void

Move to the next character

Rewind ( ) : void

Rewind the buffer

Method Details

Append() public method

Append a character to the buffer
public Append ( char c ) : void
c char
return void

Clear() public method

Reset (clear) the buffer
public Clear ( ) : void
return void

ForgetThePast() public method

Remove characters from the buffer before the current character
public ForgetThePast ( ) : void
return void

Next() public method

Move to the next character
public Next ( ) : void
return void

Rewind() public method

Rewind the buffer
public Rewind ( ) : void
return void