leftSideNumberOperationFunction
open fun leftSideNumberOperationFunction(operation: String): (left: Number, T) -> T
Content copied to clipboard
Dynamically dispatches a binary operation with the certain name with numeric first argument.
Implementations must fulfil the following requirements:
If operation is not defined in the structure, then function throws kotlin.IllegalStateException.
Equivalence to leftSideNumberOperation: for any
a
,b
, andc
,leftSideNumberOperationFunction(a)(b, c) == leftSideNumberOperation(a, b)
.
Return
an operation.
Parameters
operation
the name of operation.
Sources
common source
Link copied to clipboard