meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
dominicm 2020-03-22T22:05:18.002700Z

I may have missed this in the docs, but does m/match have different performance characteristics to m/find?

noprompt 2020-03-22T22:07:06.004Z

It shouldn’t for where they overlap.

dominicm 2020-03-22T22:07:53.005Z

(I'm not seeing anything, just planning)

noprompt 2020-03-22T22:08:35.006Z

They both use most of the same compiler stuff. Find just allows for patterns with ambiguity and picks the first.

noprompt 2020-03-22T22:09:27.007200Z

But it uses reduce or loop or whatever instead of pulling the first from a mapcat or something.