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