A2uiNotFunction


class A2uiNotFunction : A2uiFunction


Negates a boolean value.

Use this A2uiFunction to perform a logical NOT operation.

Summary

Public companion properties

A2uiNotFunction

Public functions

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

Negates the boolean value provided in args.

Public properties

open A2uiFunctionDefinition

The definition of the function.

Public companion properties

INSTANCE

val INSTANCEA2uiNotFunction

Public functions

execute

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

Negates the boolean value provided in args.

Parameters
args: Map<StringAny>

arguments containing the "value" boolean to negate

executionContext: A2uiExecutionContext

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

Returns
Any?

the logical negation of the input boolean, or true if value is missing

Public properties

definition

open val definitionA2uiFunctionDefinition

The definition of the function.