I don't, but I managed to work around it by using comp-path. I'll try to create a small repro later
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)i think i got it:
(sp/setval [(sp/filterer number?) (sp/index-nav 2)] 0 (interpose nil (range 5)))