The method used to display an element

@toimplement by default just call to_s on the element

Property definitions

counter $ Counter :: element_to_s
	# The method used to display an element
	# @toimplement by default just call `to_s` on the element
	protected fun element_to_s(e: E): String
	do
		if e == null then return "null"
		return e.to_s
	end
lib/counter/counter.nit:138,2--144,4