1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-27 21:26:24 -07:00
Abacus/core/src/main/kotlin/org/nwapw/abacus/tree/TreeNode.kt

10 lines
143 B
Kotlin
Raw Normal View History

package org.nwapw.abacus.tree
/**
* A tree node.
*/
abstract class TreeNode {
2017-08-14 19:03:52 -07:00
abstract fun <T : Any> reduce(reducer: Reducer<T>): T?
}