Function: org-uniquify

org-uniquify is a byte-compiled function defined in org-macs.el.

Signature

(org-uniquify LIST)

Documentation

Non-destructively remove duplicate elements from LIST.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defsubst org-uniquify (list)
  "Non-destructively remove duplicate elements from LIST."
  (let ((res (copy-sequence list))) (delete-dups res)))