specter

Latest version: 1.1.3
roklenarcic 2018-07-23T14:40:11.000314Z

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]

nathanmarz 2018-07-23T14:49:24.000033Z

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

nathanmarz 2018-07-23T14:49:55.000255Z

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

roklenarcic 2018-07-23T14:50:13.000130Z

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

nathanmarz 2018-07-23T14:51:02.000053Z

completely unnecessary

nathanmarz 2018-07-23T14:51:09.000554Z

the inline compiler handles all cases

roklenarcic 2018-07-23T14:51:51.000261Z

thx