15#ifndef CONSTANT_MATHS_IN_ARTS_H
16#define CONSTANT_MATHS_IN_ARTS_H
21constexpr auto pow2(
auto x)
noexcept {
return x * x; }
24constexpr auto pow3(
auto x)
noexcept {
return pow2(x) * x; }
Namespace containing several constants, physical and mathematical.
constexpr auto pow3(auto x) noexcept
power of three
constexpr auto pow4(auto x) noexcept
power of four
constexpr auto pow2(auto x) noexcept
power of two