Trie root

Root children are used to store the first letters.

Property definitions

trees $ Trie :: root
	# Trie root
	#
	# Root children are used to store the first letters.
	private var root = new TrieNode[E]
lib/trees/trie.nit:66,2--69,35