meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
markaddleman 2020-11-28T14:56:28.409600Z

This seems odd:

(m/search [{:a "a"} :b]
    [(m/$ {:a (m/some ?a)}) ?b]
    [?a ?b]) => (["a" nil])
while
(m/search [{:a "a"} :b]
    [(m/$ _ {:a (m/some ?a)}) ?b]
    [?a ?b]) => (["a" :b])
The only difference between the two is the second m/$ operation includes an anonymous context binding