au
au copied to clipboard
Request support for more math functions.
Please add support for some of the less-common math functions, including, std::cbrt.
Seems like a good idea. We did recently add support for std::hypot. Any others in particular from <cmath>? Seems like std::cbrt is the last one from its "section" that we haven't added yet. We've got all the trigonometric functions covered. And I haven't figured out the units for the hyperbolic trigonometric functions. 😅
If you didn't have any others in mind, we'll probably treat this as "support cbrt".
Seems like
std::cbrtis the last one from its "section" that we haven't added yet.
To be clear: specifically, the last one from its "section" that makes sense. We can't really have pow with a runtime variable exponent, because the type of the result would depend on a runtime value.
Reopening for docs. 😅