subtract

fun subtract(block: Expression.ExpressionBuilder.() -> Unit)

For two inputs, returns the result of subtracting the second input from the first. For a single input, returns the result of subtracting it from 0.

fun subtract(first: Double, second: Double)

Returns the result of subtracting the second input from the first.

fun subtract(value: Double)

Returns the result of subtracting it from 0.