2020-03-19 11:43:12 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-03-16 12:03:25 +01:00
|
|
|
#include <units/isq/si/prefixes.h>
|
2020-03-19 11:43:12 +00:00
|
|
|
#include <units/quantity.h>
|
|
|
|
// get at the units text of the quantity, without its numeric value
|
2020-09-08 13:09:34 +02:00
|
|
|
inline auto constexpr units_str(const units::Quantity auto& q)
|
2020-03-19 11:43:12 +00:00
|
|
|
{
|
|
|
|
typedef std::remove_cvref_t<decltype(q)> qtype;
|
|
|
|
return units::detail::unit_text<typename qtype::dimension, typename qtype::unit>();
|
|
|
|
}
|