A2uiCoreComponentDefinitionCollection


sealed interface A2uiCoreComponentDefinitionCollection : List


An immutable, indexed collection of A2uiCoreComponentDefinitions registered within an A2uiCoreCatalog.

Provides list-based access that enables iterator-free iteration using indices, as well as lookup by component name using the index operator.

Summary

Public functions

operator A2uiCoreComponentDefinition?
get(name: String)

Retrieves a component definition by its unique name.

Inherited properties

From kotlin.collections.List

Public functions

get

Added in 1.0.0-alpha01
operator fun get(name: String): A2uiCoreComponentDefinition?

Retrieves a component definition by its unique name.

Parameters
name: String

The name of the component.

Returns
A2uiCoreComponentDefinition?

The component definition, or null if it is not registered in this collection.