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