Performs nothrow and @nogc string to native type conversion.
Rseturns: true if success and false otherwise.
int value; assert("123".fromString(value) && value == 123);
double value = 0; assert("+Inf".fromString(value) && value == double.infinity); assert("-nan".fromString(value) && value != value);
See Implementation
Performs nothrow and @nogc string to native type conversion.
Rseturns: true if success and false otherwise.