Nullable.get_

Undocumented in source. Be warned that the author may not have intended to support it.
struct Nullable(T)
deprecated @property ref inout @safe pure nothrow
inout(T)
get_
()

Examples

int i = 42;
Nullable!int ni;
int x = ni.get(i);
assert(x == i);

ni = 7;
x = ni.get(i);
assert(x == 7);

Meta