Returns the rest of an infinite ordinal
An ACL2 infinite ordinal is a list whose elements are
exponent-coefficient pairs (see o-p and see o-infp). The first
exponent and first coefficient of an ordinal can be obtained by using o-first-expt and o-first-coeff respectively. To obtain the rest of
the ordinal (for recursive analysis), use the
Function:
(defun o-rst (x) (declare (xargs :guard (consp x))) (cdr x))