Function: cl-print-object-contents

cl-print-object-contents is a byte-compiled function defined in cl-print.el.gz.

Signature

(cl-print-object-contents OBJECT START STREAM)

Documentation

Dispatcher to print the contents of OBJECT on STREAM.

Print the contents starting with the item at START, without delimiters.

Implementations

((object string) start stream) in `cl-print.el'.

Undocumented

((object cl-structure-object) start stream) in `cl-print.el'.

Undocumented

((object vector) start stream) in `cl-print.el'.

Undocumented

((object cons) start stream) in `cl-print.el'.

Undocumented

(object start stream) in `cl-print.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-print.el.gz
(cl-defgeneric cl-print-object-contents (_object _start _stream)
  "Dispatcher to print the contents of OBJECT on STREAM.
Print the contents starting with the item at START, without
delimiters."
  ;; Every cl-print-object method which can print an ellipsis should
  ;; have a matching cl-print-object-contents method to expand an
  ;; ellipsis.
  (error "Missing cl-print-object-contents method"))