Fork me on GitHub
#specter
<
2016-10-03
>
novakboskov17:10:26

If I have lazy seq made of vector I can do this (transform ALL inc (lazy-seq [1 2])), then how to do this (transform MAP-VALS inc (lazy-seq {:a 1 :b 2}))?

nathanmarz18:10:15

a seq isn't a map, so you can't use MAP-VALS with it

nathanmarz18:10:38

you could use [ALL LAST] instead

novakboskov19:10:27

@nathanmarz It makes sense. Thank you for your work! 🙂