mirror of
https://github.com/DanilaFe/abacus
synced 2026-01-09 08:55:20 +00:00
Add type aliases for Kotlin and a simple extension function.
This commit is contained in:
10
core/src/main/kotlin/org/nwapw/abacus/number/NumberUtils.kt
Normal file
10
core/src/main/kotlin/org/nwapw/abacus/number/NumberUtils.kt
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
@file:JvmName("NumberUtils")
|
||||||
|
package org.nwapw.abacus.number
|
||||||
|
|
||||||
|
typealias PromotionFunction = java.util.function.Function<NumberInterface, NumberInterface>
|
||||||
|
typealias PromotionPath = List<PromotionFunction>
|
||||||
|
typealias NumberClass = Class<NumberInterface>
|
||||||
|
|
||||||
|
fun PromotionPath.promote(from: NumberInterface): NumberInterface {
|
||||||
|
return fold(from, { current, function -> function.apply(current) })
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user