Abacus/core/src/main/kotlin/org/nwapw/abacus/function/NumberFunction.kt

12 lines
378 B
Kotlin
Raw Normal View History

2017-08-25 14:59:41 -07:00
package org.nwapw.abacus.function
import org.nwapw.abacus.function.applicable.Applicable
2017-08-25 14:59:41 -07:00
import org.nwapw.abacus.number.NumberInterface
/**
* A function that operates on numbers.
*
* This function takes some number of input NumberInterfaces and returns
* another NumberInterface as a result.
*/
2017-08-25 15:42:10 -07:00
abstract class NumberFunction : Applicable<NumberInterface, NumberInterface>