In tutorials such as this one, one can simply use:
CL-USER> (class-precedence-list (find-class (class-name (class-of 123))))
In LispWorks they're available via your default package-use-list, in Allegro they're exported from ACLMOP.
But, how to use class-precedence-list
and class-direct-superclasses
in SBCL?
Obs.: There is a new version of this tutorial on CLOS via the The Common Lisp Cookbook.