NVelocity.Runtime.Parser.VelocityCharStream.Backup C# (CSharp) Method

Backup() public method

public Backup ( int amount ) : void
amount int
return void
        public void Backup(int amount)
        {
            inBuf += amount;
            if ((bufferPosition -= amount) < 0)
            {
                bufferPosition += bufferSize;
            }
        }