Option.isNull

struct Option(T)
@nogc @safe pure nothrow @property
bool
isNull
const
(
)
if (
is(T == class) ||
isPointer!T
)

Return Value

Type: bool

True if the value this option type does not hold a value.

Meta