BooleanValue

data class BooleanValue(val unwrappedValue: Boolean) : InputValue<Boolean> , OutputValue<Boolean>

An immutable boolean Value.

Constructors

Link copied to clipboard
constructor(unwrappedValue: Boolean)

Properties

Link copied to clipboard
open override val unwrappedValue: Boolean

The wrapped value.

Functions

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

Accepts a visitor.

open override fun <O> accept(visitor: OutputValueVisitor<O>): O
Link copied to clipboard

Chains two expressions together, which is used in ComposedExpressions.

Link copied to clipboard