Function: semanticdb-typecache-length
semanticdb-typecache-length is a byte-compiled function defined in
db-typecache.el.gz.
Signature
(semanticdb-typecache-length THING)
Documentation
How long is THING? Debugging function.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-typecache.el.gz
(defun semanticdb-typecache-length (thing)
"How long is THING?
Debugging function."
(cond ((cl-typep thing 'semanticdb-typecache)
(length (oref thing stream)))
((semantic-tag-p thing)
(length (semantic-tag-type-members thing)))
((and (listp thing) (semantic-tag-p (car thing)))
(length thing))
((null thing)
0)
(t -1) ))