specter

Latest version: 1.1.3
nathanmarz 2018-01-25T01:06:31.000053Z

@dadair yes, that's right

nathanmarz 2018-01-25T01:07:21.000155Z

would add a vtraverse as well

nathanmarz 2018-01-25T01:07:27.000228Z

will probably do those for next release

nathanmarz 2018-01-25T01:08:32.000247Z

but for now you can collect the path just like you're doing in nodes-with-refs and then parse it out of item when doing the traverse

2018-01-25T01:29:40.000179Z

Ok thank you I’ll give that a try

schmee 2018-01-25T23:35:59.000212Z

is there a more specter-y way to write (view (juxt :color :symbol))?

nathanmarz 2018-01-25T23:43:09.000155Z

@schmee looks good to me

1👍
schmee 2018-01-25T23:49:58.000269Z

is there something I can use in place of ??? to make this true?

user=> stuff
[{:color :red :symbol :moon} {:color :green :symbol :gear} {:color :yellow :symbol :star} {:color :blue :symbol :planet}]
user=> (= (select (??? :color :symbol) stuff) [[:red :green :yellow :blue] [:moon :gear :star :planet]])

schmee 2018-01-25T23:50:51.000174Z

feels like a multi-select