Constructor initializing this with value.
Implicitly converts to T. this must not be in the null state. This feature is deprecated and will be removed after 2.096.
Forces this to the null state.
Assigns value to the internally-held state. If the assignment succeeds, this becomes non-null.
If value is null, sets this to null, otherwise assigns value.get to the internally-held state. If the assignment succeeds, this becomes non-null.
If they are both null, then they are equal. If one is null and the other is not, then they are not equal. If they are both non-null, then they are equal if their values are equal.
Gives the string "Nullable.null" if isNull is true. Otherwise, the result is equivalent to calling std.format.formattedWrite on the underlying value.
Gets the value if not null. If this is in the null state, and the optional parameter fallback was provided, it will be returned. Without fallback, calling get with a null state is invalid.
Check if this is in the null state.