NullableRef.nullify

Forces this to the null state.

struct NullableRef(T)
@safe pure nothrow
void
nullify
()

Examples

NullableRef!int nr = new int(42);
assert(!nr.isNull);

nr.nullify();
assert(nr.isNull);

Meta

Suggestion Box / Bug Report