Function: cider-macrostep--expandable-overlay-at

cider-macrostep--expandable-overlay-at is a byte-compiled function defined in cider-macrostep.el.

Signature

(cider-macrostep--expandable-overlay-at POS)

Documentation

Return the expandable-operator overlay covering POS, if any.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-macrostep.el
(defun cider-macrostep--expandable-overlay-at (pos)
  "Return the expandable-operator overlay covering POS, if any."
  (seq-find (lambda (ov)
              (and (overlay-buffer ov)
                   (<= (overlay-start ov) pos)
                   (< pos (overlay-end ov))))
            cider-macrostep--expandable-overlays))