Option2

value class Option2<T>(val value: T) : OneOf3<Nothing, T, Nothing> (source)

Represents the second alternative of the union. @property value payload chosen for the second branch.

Constructors

Link copied to clipboard
constructor(value: T)

Properties

Link copied to clipboard
val value: T

Payload carried when this option is used.