LambdaValue

data class LambdaValue(val unwrappedValue: Lambda) : InputValue<Lambda>

A Value that wraps an action of variable parameter count.

Constructors

Link copied to clipboard
constructor(unwrappedValue: Lambda)

Properties

Link copied to clipboard
open override val unwrappedValue: Lambda

The wrapped value.

Functions

Link copied to clipboard
open override 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