Function: ewoc--create

ewoc--create is a byte-compiled function defined in ewoc.el.gz.

Signature

(ewoc--create BUFFER PRETTY-PRINTER DLL)

Documentation

Constructor for objects of type ewoc.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
;;; The ewoc data type

(cl-defstruct (ewoc
	    (:constructor nil)
	    (:constructor ewoc--create (buffer pretty-printer dll))
	    (:conc-name ewoc--))
  buffer pretty-printer header footer dll last-node hf-pp)