A2uiFunctionCollection


sealed interface A2uiFunctionCollection : List


An immutable, indexed collection of A2uiFunctions.

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

Summary

Public functions

operator A2uiFunction?
get(name: String)

Retrieves a function by its unique name.

Inherited properties

From kotlin.collections.List

Public functions

get

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

Retrieves a function by its unique name.

Parameters
name: String

The name of the function.

Returns
A2uiFunction?

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