mirror of
https://github.com/fiddlerwoaroof/data-lens.git
synced 2025-11-08 10:16:32 +00:00
feat: two-arg INTO and continue restart for xfs
This commit is contained in:
@ -23,7 +23,12 @@
|
||||
(lambda (rf)
|
||||
(transducer-lambda
|
||||
((acc next)
|
||||
(funcall rf acc (call-function next)))
|
||||
(restart-case
|
||||
(funcall rf acc (call-function next))
|
||||
(continue ()
|
||||
:report (lambda (s)
|
||||
(format s "skip this item"))
|
||||
acc)))
|
||||
((it) (funcall rf it))))))
|
||||
|
||||
(defun mv-mapping (function &rest args)
|
||||
|
||||
Reference in New Issue
Block a user