Registry
Represents a type-safe associative array. It means that it stores association like Key<T> -> T
for arbitrary types T
.
Inheritors
Functions
Link copied to clipboard
Checks if the registryKey is stored in the registry and have association with anything.
Link copied to clipboard
Retrieves value by this registryKey or throws exception if no association is present.
Link copied to clipboard
Retrieves value by this registryKey or returns default value if no association is present.
Link copied to clipboard
Retrieves value by this registryKey or computes block and returns its value if no association is present.
Link copied to clipboard
Retrieves value by this registryKey or returns null
if no association is present.
Link copied to clipboard
Represents this registry as Kotlin stdlib's map.