Reset a to its default value.
the argument type, likely to be infered.
a reference to a T.
uint a = 159; a.reset(); assert(a == a.init); string b = "bla"; b.reset(); assert(b == b.init);
std.typecons.Nullable.nullify
See Implementation
Reset a to its default value.