Function: object-write
object-write is a byte-compiled function defined in eieio.el.gz.
Signature
(object-write THIS &optional COMMENT)
Documentation
Write out object THIS to the current stream.
Optional COMMENT will add comments to the beginning of the output.
Implementations
(object-write (OBJ semanticdb-table)) in `semantic/db-file.el'.
Undocumented
(object-write (THIS ede-proj-target-makefile-info)) in `ede/proj-info.el'.
Undocumented
(object-write (THIS eieio-persistent) &optional COMMENT) in `eieio-base.el'.
Undocumented
(object-write (THIS eieio-default-superclass) &optional COMMENT) in `eieio.el'.
Write object THIS out to the current stream. This writes out the vector version of this object. Complex and recursive object are discouraged from being written. If optional COMMENT is non-nil, include comments when outputting this object.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio.el.gz
(cl-defgeneric object-write (this &optional comment)
"Write out object THIS to the current stream.
Optional COMMENT will add comments to the beginning of the output.")