A2uiFunctionCollection


public sealed interface A2uiFunctionCollection extends 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 methods

abstract A2uiFunction

Retrieves a function by its unique name.

Public methods

get

Added in 1.0.0-alpha01
abstract A2uiFunction get(@NonNull String name)

Retrieves a function by its unique name.

Parameters
@NonNull String name

The name of the function.

Returns
A2uiFunction

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