Function: ewoc--node-data
ewoc--node-data is a byte-compiled function defined in ewoc.el.gz.
Signature
(ewoc--node-data ewoc--node-data X)
Documentation
Access slot "data" of ewoc--node struct X.
Aliases
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)