DefaultParserInput

smile.json.ParserInput.DefaultParserInput
abstract class DefaultParserInput extends ParserInput

Attributes

Graph
Supertypes
trait ParserInput
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Concrete methods

def cursor: Int
def getLine(index: Int): Line

Inherited methods

def length: Int

Attributes

Inherited from:
ParserInput
def nextChar(): Char

Advance the cursor and get the next char. Since the char is required to be a 7-Bit ASCII char no decoding is required.

Advance the cursor and get the next char. Since the char is required to be a 7-Bit ASCII char no decoding is required.

Attributes

Inherited from:
ParserInput

Advance the cursor and get the next char, which could potentially be outside of the 7-Bit ASCII range. Therefore decoding might be required.

Advance the cursor and get the next char, which could potentially be outside of the 7-Bit ASCII range. Therefore decoding might be required.

Attributes

Inherited from:
ParserInput
def sliceCharArray(start: Int, end: Int): Array[Char]

Attributes

Inherited from:
ParserInput
def sliceString(start: Int, end: Int): String

Attributes

Inherited from:
ParserInput

Concrete fields

protected var _cursor: Int