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