kgp.examples / CustomOperations / SquareRoot

SquareRoot

class SquareRoot : Function

Performs the square root function on a single argument (sqrt(x)).

If x is less than zero then the function will give zero as output.

Constructors

<init> SquareRoot()

Performs the square root function on a single argument (sqrt(x)).

Properties

operation val operation: Operation

An operation that this function performs when evaluated.

Inherited Properties

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.

Inherited Functions

evaluate open fun evaluate(args: List<Double>): Double

Evaluates this function on the given arguments.