subtract

@JvmStatic
fun subtract(vararg expressions: Expression): Expression

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.


DSL function for "-".


@JvmStatic
fun subtract(first: Double, second: Double): Expression

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


@JvmStatic
fun subtract(value: Double): Expression

Returns the result of subtracting it from 0.