1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-30 06:40:58 -07:00
Abacus/src/main/kotlin/org/nwapw/abacus/tree/TreeNode.kt

7 lines
119 B
Kotlin
Raw Normal View History

package org.nwapw.abacus.tree
abstract class TreeNode {
abstract fun <T: Any> reduce(reducer: Reducer<T>) : T?
}