Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
interface Registry

Represents a type-safe associative array. It means that it stores association like Key<T> -> T for arbitrary types T.

Link copied to clipboard

Mutable version of Registry that is used by builder function.

Link copied to clipboard
interface RegistryKey<T>

A key that is used to retrieve a value of type T from Registry.

Link copied to clipboard

Describes how RegistryKeys are equated and stored in Registry.

Link copied to clipboard

A wrapper of RegistryKey that can be used in Kotlin stdlib's maps.

Functions

Link copied to clipboard
fun <T> Registry.getOrDefault(registryKey: RegistryKey<T>, default: T): T

Retrieves value by this registryKey or returns default value if no association is present.

Link copied to clipboard
inline fun <T> Registry.getOrElse(registryKey: RegistryKey<T>, block: () -> T): T

Retrieves value by this registryKey or computes block and returns its value if no association is present.

Link copied to clipboard
fun <T> Registry.getOrNull(registryKey: RegistryKey<T>): T?

Retrieves value by this registryKey or returns null if no association is present.

Link copied to clipboard
inline fun Registry(block: RegistryBuilder.() -> Unit): Registry

Builder function for Registry.