Function: magit-section-ident

magit-section-ident is a byte-compiled function defined in magit-section.el.

Signature

(magit-section-ident SECTION)

Documentation

Return an unique identifier for SECTION.

The return value has the form ((TYPE . VALUE)...).

Source Code

;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-section-ident (section)
  "Return an unique identifier for SECTION.
The return value has the form ((TYPE . VALUE)...)."
  (cons (cons (oref section type)
              (magit-section-ident-value section))
        (and$ (oref section parent)
              (magit-section-ident $))))