mirror of
https://github.com/DanilaFe/abacus
synced 2025-07-09 11:11:55 -07:00
10 lines
142 B
Kotlin
10 lines
142 B
Kotlin
package org.nwapw.abacus.tree
|
|
|
|
/**
|
|
* A tree node.
|
|
*/
|
|
abstract class TreeNode {
|
|
|
|
abstract fun <T : Any> reduce(reducer: Reducer<T>): T
|
|
|
|
} |