JsonNumber

A JSON number in its exact source representation. Integral values keep full 64-bit fidelity; asDouble is the (possibly lossy) numeric view.

@safe
struct JsonNumber {
Rep rep;
long s;
ulong u;
double f;
}