Expression

interface Expression

An expression that can be evaluated into a single static value. Expressions are used in function arguments.

Inheritors

Functions

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

Accepts a visitor.

Link copied to clipboard

Chains two expressions together, which is used in ComposedExpressions.

Link copied to clipboard