meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
2021-02-06T23:53:55.019300Z

I don't know if this is a bug, but gather does not work in conjunction with map-of

2021-02-06T23:55:51.019600Z

(m/rewrite {:a 1 :b 2}
  (m/map-of (m/pred keyword? !ks) _) [!ks ...])
;; => [:a :b]
(m/rewrite {:a 1 :b 2}
  (m/map-of (m/gather (m/pred keyword? !ks)) _) [!ks ...])
;; => nil
(m/rewrite [:a :b :c 1]
  (m/gather (m/pred keyword? !ks) _) [!ks ...])
;; => [:a :b :c]

2021-02-07T21:16:28.019900Z

👍