The title of the book.
(defclass book ()
((title :accessor title :initarg :title
:documentation "The title of the book.")
(contents :accessor contents :initarg :contents)
(indexes :accessor indexes :initarg :indexes :initform (make-hash-table :test 'eq))))
Source Context