Fork me on GitHub
#specter
<
2018-07-23
>
roklenarcic14:07:11

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]

nathanmarz14:07:24

@roklenarcic you're best off doing that with a reduce

nathanmarz14:07:55

each (setval (nthpath i) NONE data) invocation is O(n), and INDEXED-VALS doesn't currently support removal via NONE

roklenarcic14:07:13

since you're here, how important is precompiling routes now?

nathanmarz14:07:02

completely unnecessary

nathanmarz14:07:09

the inline compiler handles all cases