Function: dash--match-ignore-place-p

dash--match-ignore-place-p is a byte-compiled function defined in dash.el.

Signature

(dash--match-ignore-place-p SYMBOL)

Documentation

Return non-nil if SYMBOL is a symbol and starts with _.

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun dash--match-ignore-place-p (symbol)
  "Return non-nil if SYMBOL is a symbol and starts with _."
  (and (symbolp symbol)
       (eq (aref (symbol-name symbol) 0) ?_)))