Creates a Quantity from a string at compile-time.
alias Time = typeof(second); enum t = si!"90 min"; static assert(is(typeof(t) == Time)); static assert(si!"h" == 60 * 60 * second);
See Implementation
Creates a Quantity from a string at compile-time.