A2uiOrFunction


class A2uiOrFunction : A2uiFunction


Evaluates a list of boolean values using logical OR.

Use this A2uiFunction to check if any given values are true.

Summary

Public companion properties

A2uiOrFunction

Public functions

open Any?
execute(args: Map<StringAny>, executionContext: A2uiExecutionContext)

Runs the logical OR operation on the given args.

Public properties

open A2uiFunctionDefinition

The definition of the function.

Public companion properties

INSTANCE

val INSTANCEA2uiOrFunction

Public functions

execute

open fun execute(args: Map<StringAny>, executionContext: A2uiExecutionContext): Any?

Runs the logical OR operation on the given args.

Parameters
args: Map<StringAny>

arguments containing the "values" list of booleans to check

executionContext: A2uiExecutionContext

context allowing to execute other functions, evaluate dynamic payloads and resolving data bindings

Returns
Any?

true if at least one value in the list is true, false otherwise

Public properties

definition

open val definitionA2uiFunctionDefinition

The definition of the function.