Check that two quantity types are dimensionally consistent.
alias Speed = typeof(meter/second); alias Velocity = typeof((1/second * meter)); static assert(AreConsistent!(Speed, Velocity));
See Implementation
Check that two quantity types are dimensionally consistent.