Option.get

Gets the value stored within the Optional.

struct Option(T)
@nogc @trusted
T
get
()

Return Value

Type: T

The value stored within the Optional, throws a NuException if the Optional is invalid.

Meta