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 intersection of ERROR-TYPES and CIDER-STACKTRACE-SUPPRESSED-ERRORS.

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-20260414.1619/cider-stacktrace.el
;;; Internal/Middleware error suppression

(defun cider-stacktrace-some-suppressed-errors-p (error-types)
  "Return intersection of ERROR-TYPES and CIDER-STACKTRACE-SUPPRESSED-ERRORS.
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))