mp_units::cbrt¶
cbrt overloads
Synopses¶
Declared in <mp-units/framework/reference.h>
Computes the cubic root of a reference
[[nodiscard]] consteval /* implementation-defined */ cbrt(reference);
Computes the cubic root of a quantity
template<auto R, typename Rep>
requires requires(Rep v) { cbrt(v); }
#if MP_UNITS_HOSTED
|| requires(Rep v) { std::cbrt(v); }
[[nodiscard]] constexpr quantity<cbrt(R), Rep> cbrt(quantity<R, Rep> const& q) noexcept;
Return Value¶
- The result of computation
- Quantity The result of computation
Note
The return value should not be discarded.
Parameters¶
| Name | Description |
|---|---|
| r | Reference being the base of the operation |
| q | Quantity being the base of the operation |