meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
nlessa 2020-06-25T15:58:48.453500Z

Hi! (me/match '[?a :?a] [?e (me/app keyword ?e)] true) => fails What am I missing?

noprompt 2020-06-25T17:29:08.453900Z

@nlessa I think because the pattern is backwards?

(m/match '[?a :?a]
  [(m/app keyword ?e) ?e]
  true)
;; => true

🤘 1
noprompt 2020-06-25T17:31:53.455Z

In the example you shared keyword is being applied to :?a and then compared to '?a (`?e`) and fails.