Fork me on GitHub
#beginners
<
2017-07-31
>
rgdelato00:07:22

Is the equivalent of arr.slice(3, 6) in Clojure something like (take 3 (drop 3 arr))?

noisesmith00:07:48

if you actually have an array you can slice it

noisesmith00:07:08

with vectors the best option is subvec

noisesmith00:07:20

for everything else, sure, take and drop work

rgdelato00:07:57

awesome, thank you! subvec is what I was looking for

joshkh10:07:29

despite my best efforts, i can't get figwheel to update when cljc files are changed

joshkh10:07:07

is it not enough to have :source-paths ["src/cljs" "src/cljc"] in my project.clj?

donyorm11:07:50

using lein-cljsbuild, I assume?

noisesmith16:07:37

figwheel has it’s own autobuilder