meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
timothypratley 2020-03-17T00:44:40.270300Z

(def p
  (s/top-down
    (s/match
      (m/pred string? ?s) (keyword ?s)
      ?x ?x)))

(p [1 ["a" 2] "b" 3 "c"])
=> [1 [:a 2] :b 3 :c]