Variable: ebrowse-member-list-accessors

ebrowse-member-list-accessors is a variable defined in ebrowse.el.gz.

Value

(ebrowse-ts-member-variables ebrowse-ts-member-functions ebrowse-ts-static-variables ebrowse-ts-static-functions ebrowse-ts-friends ebrowse-ts-types)

Documentation

List of accessors for member lists.

Each element is the symbol of an accessor function. The nth element must be the accessor for the nth member list in an ebrowse-ts structure.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defconst ebrowse-member-list-accessors
  (list #'ebrowse-ts-member-variables
        #'ebrowse-ts-member-functions
        #'ebrowse-ts-static-variables
        #'ebrowse-ts-static-functions
        #'ebrowse-ts-friends
        #'ebrowse-ts-types)
  "List of accessors for member lists.
Each element is the symbol of an accessor function.
The nth element must be the accessor for the nth member list
in an `ebrowse-ts' structure.")