Function: NODE-HEIGHT

Source

(defun node-height (n)
  (if n (height n) -1))
Source Context