xo-unit: + with_units + example
This commit is contained in:
parent
4ee89948d9
commit
779e7e0569
2 changed files with 17 additions and 2 deletions
|
|
@ -227,6 +227,14 @@ namespace xo {
|
|||
};
|
||||
} /*namespace detail*/
|
||||
|
||||
template <auto Unit, typename Q1>
|
||||
requires(quantity_concept<Q1>
|
||||
&& Q1::always_constexpr_unit)
|
||||
constexpr auto
|
||||
with_units(const Q1 & x) {
|
||||
return x.template rescale_ext<Unit>();
|
||||
}
|
||||
|
||||
template <typename Q1, typename Q2, auto Unit = Q2::s_unit>
|
||||
requires (quantity_concept<Q1>
|
||||
&& quantity_concept<Q2>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue