Entry

@Serializable
data class Entry(val key: String, val value: String)

Represents a key-value pair in a LevelDB database. The key and value are both eagerly initialized and read from the database when the pair is created.

Constructors

Link copied to clipboard
constructor(key: String, value: String)

Properties

Link copied to clipboard
val key: String

The key of the pair.

Link copied to clipboard

The value of the pair.