Function: cider--extract-connections
cider--extract-connections is a byte-compiled function defined in
cider-session.el.
Signature
(cider--extract-connections SESSIONS)
Documentation
Return a flattened list of all REPL buffers in SESSIONS.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-session.el
(defun cider--extract-connections (sessions)
"Return a flattened list of all REPL buffers in SESSIONS."
(seq-reduce (lambda (x y)
(append x (cdr y)))
sessions
'()))