Class: BOOK

Slots

  • TITLE

    The title of the book.

  • CONTENTS
  • INDEXES

Hierachy

Precedence List

  • STANDARD-OBJECT

Source

(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