Function: ewoc--node-left

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

Signature

(ewoc--node-left CL-X)

Documentation

Access slot "left" of ewoc--node struct CL-X.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
;; The doubly linked list is implemented as a circular list with a dummy
;; node first and last. The dummy node is used as "the dll".
(cl-defstruct (ewoc--node
	    (:type vector)		;ewoc--node-nth needs this
            (:constructor nil)
	    (:constructor ewoc--node-create (start-marker data)))
  left right data start-marker)