Value

sealed interface Value<out T>

Inheritors

Types

Link copied to clipboard

Represents absence of captured value.

Link copied to clipboard
class Present<out T>(val value: T) : SlotCapture.Value<T>

Represents last captured value.