class Exponent : Function
Performs the exponent function on two arguments (|x|^y).
If y is greater than 10, then x + y + C_UNDEF will be given as output.
<init> |
Exponent()
Performs the exponent function on two arguments (|x|^y). |
operation |
val operation: Operation
An operation that this function performs when evaluated. |
arity |
open val arity: Int
The number of arguments this function operates on. |
representation |
val representation: String
A representation of this function that can be output. |
evaluate |
open fun evaluate(args: List<Double>): Double
Evaluates this function on the given arguments. |