what's the fastest way to drop certain indexes in a vector? e.g. given vector [:a :b :c :d]
and indexes [0 2]
I should get [:b :d]
@roklenarcic you're best off doing that with a reduce
each (setval (nthpath i) NONE data)
invocation is O(n), and INDEXED-VALS
doesn't currently support removal via NONE
since you're here, how important is precompiling routes now?
completely unnecessary
the inline compiler handles all cases
thx