BooleanFuncExpr

Represents a function expression that yields a boolean result as described in DynamoDB's function documentation

Properties

Link copied to clipboard

Any additional arguments used by the function

Link copied to clipboard
abstract val func: BooleanFunc

The specific boolean function to use

Link copied to clipboard
abstract val path: AttributePath

The attribute path to pass as the function's first argument

Functions

Link copied to clipboard
open override fun <T> accept(visitor: ExpressionVisitor<T>): T

Accepts a visitor that is traversing an expression tree by dispatching to a subtype implementation. Subtype implementations MUST call the ExpressionVisitor.visit overload for their concrete type (effectively forming a double dispatch) and MUST return the resulting value.