Skip to content

function pow(E1 &&, E2 &&) base

template <typename E1, typename E2>
    requires expression_arguments<E1, E2>
KFR_FUNCTION expression_make_function<fn::pow, E1, E2> pow(E1&& x, E2&& y)

Returns the x raised to the given power y. Accepts and returns expressions.

Defined at base/math_expressions.hpp:504