[#mp_units-cbrt-0d] = xref:mp_units.adoc[mp_units]::cbrt :relfileprefix: ../ :mrdocs: Computes the cubic root of a quantity == Synopsis Declared in `<mp‐units/math.h>` [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>] cbrt(xref:mp_units/quantity-01.adoc[quantity<R, Rep>] const& q) noexcept; ---- == Description Both the quantity value and its quantity specification are the base of the operation. == Return Value Quantity The result of computation == Parameters [cols=2] |=== | Name | Description | *q* | Quantity being the base of the operation |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#