Tests whether T is a quantity type
import quantities.si : Time, meter; static assert(isQuantity!Time); static assert(isQuantity!(typeof(meter))); static assert(!isQuantity!double);
See Implementation
Tests whether T is a quantity type