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