milesPerHour constant

Unit const milesPerHour

/////////// /////////// A unit of velocity expressing the number of international mile per hour (abbreviation mph).

Implementation

// Velocity //
//////////////

/// A unit of velocity expressing the number of international
/// [mile] per [hour] (abbreviation `mph`).
static const Unit milesPerHour = ProductUnit._([
  RationalPower<Unit>(NonSI.mile),
  RationalPower<Unit>(NonSI.hour, RationalNumber._(-1))
]);