Key

data class Key(val buffer: ReadBuffer, val start: Int, val end: Int = buffer.findFirst(ZeroByte, start))

Represents a key element in the buffer. Keys are used to reference objects in a Map

Constructors

Link copied to clipboard
constructor(buffer: ReadBuffer, start: Int, end: Int = buffer.findFirst(ZeroByte, start))

Properties

Link copied to clipboard
Link copied to clipboard
val end: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val start: Int

Functions

Link copied to clipboard
operator fun get(index: Int): Char
Link copied to clipboard

Checks whether Key is invalid or not.

Link copied to clipboard
open override fun toString(): String