How to display a specific element of the tree

By defaut, uses to_s

Subclasses should redefine this method to provide a specific output

Property definitions

ordered_tree $ OrderedTree :: display
	# How to display a specific element of the tree
	# By defaut, uses `to_s`
	#
	# Subclasses should redefine this method to provide a specific output
	fun display(e: E): String do return e.to_s
lib/ordered_tree/ordered_tree.nit:196,2--200,43