peek

open override fun peek(): Char(source)

Gives back the next character without skipping

Return

the next character

Since

0.1.0

See also


open override fun peek(num: Int): Char(source)

Gives back the next character without skipping

Return

the next character

Since

0.1.0

Parameters

num

the position to get

See also


open override fun peek(from: Int, to: Int): String(source)

Gives back a part of the CharacterInputStream as string (relative to the actual position)

Return

the character at the requested position

Since

0.1.0

Parameters

from

the starting position of the string to get

to

the end position of the string to get

See also