leftSideNumberOperation

open fun leftSideNumberOperation(operation: String, left: Number, right: T): T(source)

Dynamically invokes a binary operation with the certain name with numeric first argument.

Implementations must fulfil the following requirements:

  1. If operation is not defined in the structure, then the function throws kotlin.IllegalStateException.

  2. Equivalence to leftSideNumberOperation: for any a, b, and c, leftSideNumberOperationFunction(a)(b, c) == leftSideNumberOperation(a, b, c).

Return

a result of operation.

Parameters

operation

the name of operation.

left

the first argument of operation.

right

the second argument of operation.