Function: registry-size

registry-size is a byte-compiled function defined in registry.el.gz.

Signature

(registry-size ARG &rest ARGS)

Implementations

((db registry-db)) in `registry.el'.

Return the size of the registry-db object DB. This is the key count of the `data' slot.

Source Code

;; Defined in /usr/src/emacs/lisp/registry.el.gz
(cl-defmethod registry-size ((db registry-db))
  "Return the size of the registry-db object DB.
This is the key count of the `data' slot."
  (hash-table-count (oref db data)))