Documentation Language: Swift

Structure

AQLVariableExpression

Represents a variable reference in AQL.

struct AQLVariableExpression

Overview

AQL allows implicit ‘self’. If the variable is not found in the context, the context implementation may try to resolve it as a property of ‘self’.

Topics

Initializers

Instance Properties

V

Instance Methods

F
evaluate(in:)

Evaluates the expression within the specified execution context.

Relationships

Conforms To

See Also

Expressions

P
AQLExpression

Protocol for AQL expressions that can be evaluated within an execution context.

S
AQLNavigationExpression

Represents property navigation (e.g., object.property or object.reference).

S
AQLCollectionExpression

Represents collection operations in AQL (select, reject, collect, etc.).

S
AQLLiteralExpression

Represents a literal value (String, Integer, Boolean, Real, null).

S
AQLLetExpression

Represents let expressions for local variable bindings in AQL.