
tree234_to_assoc_list(+Tree, -AssocList)

   Converts a tree into an association list.

Arguments
   Tree                A 2-3-4 tree
   AssocList           A list of the key-value pairs from Tree

Type
   library(m_tree234)

Description
	
	AssocList is a list containing the key/value pairs from the tree
	Tree, in the form Key-Value.
	
	
	This predicate should only be called with trees created by other
	predicates from the tree234 module.
	
	

Fail Conditions
   Never fails.

Resatisfiable
   no

See Also
   assoc_list_to_tree234 / 2
