Determines if a quantity is finite.
Declared in <mp-units/math.h>
template<
auto R,
typename Rep>
requires requires(Rep v) { isfinite(v); } || requires(Rep v) { std::isfinite(v); }
[[nodiscard]]
constexpr
bool
isfinite(quantity<R, Rep> const& a) noexcept;
bool: Whether the quantity is finite or not.
| Name | Description |
|---|---|
| a: | Quantity to analyze. |
| a | A quantity |