A2uiAndFunction


class A2uiAndFunction : A2uiFunction


Evaluates a list of boolean values using logical AND.

Use this A2uiFunction to evaluate if all given values are true.

Summary

Public companion properties

A2uiAndFunction

Public functions

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

Runs the logical AND operation on the given args.

Public properties

open A2uiFunctionDefinition

The definition of the function.

Public companion properties

INSTANCE

val INSTANCEA2uiAndFunction

Public functions

execute

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

Runs the logical AND 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 all values in the list are true, false otherwise

Public properties

definition

open val definitionA2uiFunctionDefinition

The definition of the function.