[#mp_units-isinf-04] = xref:mp_units.adoc[mp_units]::isinf :relfileprefix: ../ :mrdocs: Determines if a quantity point is infinite. == Synopsis Declared in `<mp‐units/math.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< auto R, auto PO, typename Rep> requires requires(quantity<R, Rep> q) { isinf(q); } [[nodiscard]] constexpr bool isinf(xref:mp_units/quantity_point-08.adoc[quantity_point<R, PO, Rep>] const& a) noexcept; ---- == Return Value bool: Whether the quantity point is infinite or not. == Parameters [cols=2] |=== | Name | Description | *a:* | Quantity point to analyze. | *a* | A quantity point |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#