Function: ---truthy?

---truthy? is a byte-compiled function defined in dash.el.

Signature

(---truthy? OBJ)

Documentation

Return OBJ as a boolean value (t or nil).

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun ---truthy? (obj)
  "Return OBJ as a boolean value (t or nil)."
  (declare (pure t) (side-effect-free error-free))
  (and obj t))