Converts an optional type to a nullable type
optional
assertEquals(nullable(7), some(7).toNullable); assertEquals(Nullable!(int).init, none!int.toNullable);
auto a = some(3); auto b = none!int; assertEquals(3, a.getOr(7)); assertEquals(8, b.getOr(8));
See Implementation
Converts an optional type to a nullable type