Tests wheter this quantity has the same dimensions as another one.
auto second = unit!double("T"); auto minute = 60 * second; auto meter = unit!double("L"); assert(minute.isConsistentWith(second)); assert(!meter.isConsistentWith(second));
See Implementation
Tests wheter this quantity has the same dimensions as another one.