package datastructures.core.tree

trait TreePosition {
  def isRoot: Boolean
  def level: Int
}
