Fork me on GitHub
#specter
<
2017-04-03
>
tothda16:04:23

Hi All, I'm using specter 1.0.0 and trying this example from the readme: (setval [:a ALL nil?] NONE {:a [1 2 nil 3 nil]}) what I get is this: {:a [1 2 :com.rpl.specter.impl/NONE 3 :com.rpl.specter.impl/NONE]} instead of {:a [1 2 3]} Clojure version: 1.9.0-alpha14.

nathanmarz16:04:53

@tothda that definitely works with 1.0.0

nathanmarz16:04:02

if you're using lein what's the output of lein deps :tree?

tothda17:04:50

Ohh, I'm sorry, it works. I started the REPL on a branch where specter version was 0.13.2 and then switched to an other branch with specter 1.0.0

tothda17:04:03

After restarting the REPL with 1.0.0 it works obviously 😳