Function: semanticdb-find-search-index

semanticdb-find-search-index is a byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-find-search-index &rest SLOTS)

Documentation

Create a new object of class type semanticdb-find-search-index(var)/semanticdb-find-search-index(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
;;; Index Class
;;
;; The find routines spend a lot of time looking stuff up.
;; Use this handy search index to cache data between searches.
;; This should allow searches to start running faster.
(defclass semanticdb-find-search-index (semanticdb-abstract-search-index)
  ((include-path :initform nil
		 :documentation
		 "List of semanticdb tables from the include path.")
   (type-cache :initform nil
	       :documentation
	       "Cache of all the data types accessible from this file.
Includes all types from all included files, merged namespaces, and
expunge duplicates.")
   )
  "Concrete search index for `semanticdb-find'.
This class will cache data derived during various searches.")