Option.isNull

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

Return Value

Type: bool

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

Meta