peek

abstract fun peek(): Char(source)

Gives back the next character without skipping

Return

the next character

Since

0.1.0


abstract fun peek(num: Int): Char(source)

Gives back a character of the CharacterInputStream (relative to the actual position)

Return

the character at the requested position

Since

0.1.0

Parameters

num

the position to get


abstract 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