Author: abaine Date: Wed Jun 13 19:12:10 2007 New Revision: 8
Added: trunk/funds/src/trees/package.lisp Log: funds-trees package
Added: trunk/funds/src/trees/package.lisp ============================================================================== --- (empty file) +++ trunk/funds/src/trees/package.lisp Wed Jun 13 19:12:10 2007 @@ -0,0 +1,16 @@ + +(in-package :cl-user) + +(defpackage :funds-trees + (:use :cl) + (:export ; AVL Tree public interface + :empty-avl-tree + :avl-empty-p + :avl-insert + :avl-remove + + :avl-key + :avl-value + :avl-height + :avl-left + :avl-right))