OutputValue

sealed interface OutputValue<T> : Value<T>

An immutable value wrapper that is used in function outputs.

Inheritors

Properties

Link copied to clipboard
abstract val unwrappedValue: T

The wrapped value.

Functions

Link copied to clipboard
abstract fun <O> accept(visitor: OutputValueVisitor<O>): O
Link copied to clipboard
fun Value<*>.isNone(): Boolean

Whether this value represents a missing/null value, either as a direct NoneValue or as a value wrapping None, NoneValue, or null.