public static System.Collections.Generic.IEnumerable <IBinarySearchTree <K, V> > Reverse <K, V>(this IBinarySearchTree <K, V> tree) where K : System.IComparable <K> { return(tree.ReverseInorder <K, V>()); }