mirror of
https://github.com/mpusz/mp-units.git
synced 2025-08-04 04:44:27 +02:00
refactor: op[U]
for quantity
and quantity_point
replaced with .in(U)
Resolves #469
This commit is contained in:
@@ -109,7 +109,7 @@ int main()
|
||||
constexpr auto v2 = 70 * mph;
|
||||
constexpr auto v3 = avg_speed(220. * isq::distance[km], 2 * h);
|
||||
constexpr auto v4 = avg_speed(isq::distance(140. * mi), 2 * h);
|
||||
constexpr auto v5 = v3[m / s];
|
||||
constexpr auto v5 = v3.in(m / s);
|
||||
constexpr auto v6 = value_cast<m / s>(v4);
|
||||
constexpr auto v7 = value_cast<int>(v6);
|
||||
|
||||
@@ -123,4 +123,4 @@ int main()
|
||||
}
|
||||
```
|
||||
|
||||
_Try it on the [Compiler Explorer](https://godbolt.org/z/zPnerKqzh)._
|
||||
_Try it on the [Compiler Explorer](https://godbolt.org/z/E4rvPGa3n)._
|
||||
|
Reference in New Issue
Block a user