specter

Latest version: 1.1.3
Busy escaping the comfort zone 2020-04-08T15:08:02.004500Z

That worked thank you @nathanmarz

thom 2020-04-08T15:24:15.006400Z

What's an efficient way to find a value that comes after (in a vector) something matched by a walker? Should I just be matching one level up instead? For example, in [:foo [:bar [:arbitrarily-nested-stuff [:baz 42]]] if I was interested in the value 42 next to that deeply nested :baz?

nathanmarz 2020-04-08T16:52:34.006700Z

@thom704 yea, you would want to match one level higher

thom 2020-04-08T16:53:31.007100Z

I think I had a slightly wrong-headed zippers way of thinking about it where I could get to somewhere and then just navigate around arbitrarily