Function: cider-stacktrace-some-suppressed-errors-p

cider-stacktrace-some-suppressed-errors-p is a byte-compiled function defined in cider-stacktrace.el.

Signature

(cider-stacktrace-some-suppressed-errors-p ERROR-TYPES)

Documentation

Return non-nil if ERROR-TYPES has any suppressed error type.

I.e, return non-nil if the seq ERROR-TYPES shares any elements with cider-stacktrace-suppressed-errors. This means that even a well-behaved (ie, promoted) error type will be guilty by association if grouped with a suppressed error type.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-stacktrace.el
;;; Internal/Middleware error suppression

(defun cider-stacktrace-some-suppressed-errors-p (error-types)
  "Return non-nil if ERROR-TYPES has any suppressed error type.
I.e, return non-nil if the seq ERROR-TYPES shares any elements with
`cider-stacktrace-suppressed-errors'.  This means that even a
well-behaved (ie, promoted) error type will be guilty by association if
grouped with a suppressed error type."
  (seq-intersection error-types cider-stacktrace-suppressed-errors))