AndExpr

interface AndExpr : BooleanExpr

Represents an AND expression as described in DynamoDB's logical evaluations documentation. This expression will be true if (operand[0] && operand[1] && ... && operand[n - 1]).

Properties

Link copied to clipboard
abstract val operands: List<BooleanExpr>

A list of 2 or more BooleanExpr conditions which are ANDed together

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.