[#mp_units-cbrt-07] = xref:mp_units.adoc[mp_units]::cbrt :relfileprefix: ../ :mrdocs: Computes the cubic root of a quantity == Synopses Declared in `<mp‐units/math.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] consteval /* implementation-defined */ xref:mp_units/cbrt-0e.adoc[cbrt](xref:mp_units/reference.adoc[reference]); ---- [.small]#xref:mp_units/cbrt-0e.adoc[_» more..._]# Computes the cubic root of a quantity [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< auto R, typename Rep> requires requires(Rep v) { cbrt(v); } || requires(Rep v) { std::cbrt(v); } [[nodiscard]] constexpr xref:mp_units/quantity-01.adoc[quantity<cbrt(R), Rep>] xref:mp_units/cbrt-0d.adoc[cbrt](xref:mp_units/quantity-01.adoc[quantity<R, Rep>] const& q) noexcept; ---- [.small]#xref:mp_units/cbrt-0d.adoc[_» more..._]# == Return Value Quantity The result of computation == Parameters [cols="1,4"] |=== |Name|Description | *q* | Quantity being the base of the operation |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#