StorageEntry

data class StorageEntry<K, V>(val key: K, val value: V)

Data class to represent an entry in the RegistryStorage.

Constructors

Link copied to clipboard
constructor(key: K, value: V)

Properties

Link copied to clipboard
val key: K

The key of this entry.

Link copied to clipboard
val value: V

The value of this entry.