Nullable.opAssign

void opAssign()(T value)

Assigns value to the internally-held state. If the assignment succeeds, this becomes non-null. No null checks are made. Note that the assignment may leave this in the null state.

Parameters

valueA value of type T to assign to this Nullable. If it is nullvalue, then the internal state of this Nullable will be set to null.