parent of the parent of this node (null if root)

Property definitions

trees $ BinTreeNode :: grandparent
	# `parent` of the `parent` of this node (null if root)
	fun grandparent: nullable N do
		if parent == null then
			return null
		else
			return parent.parent
		end
	end
lib/trees/bintree.nit:412,2--419,4