specter

Ben Sless 2024-02-22T08:24:08.215159Z

I don't, but I managed to work around it by using comp-path. I'll try to create a small repro later

2024-02-22T21:46:15.544539Z

what's a good way to filter a list and then reorder within the filtered list? tried something like this, but it doesn't work:

(sp/setval [number? (sp/index-nav 2)] 0 (interpose nil (range 5)))
i'd like the output to be
(2 nil 0 nil 1 nil 3 nil 4)

2024-02-22T21:51:24.852969Z

i think i got it:

(sp/setval [(sp/filterer number?) (sp/index-nav 2)] 0 (interpose nil (range 5)))