Fork me on GitHub
#meander
<
2020-03-22
>
dominicm22:03:18

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

noprompt22:03:06

It shouldn’t for where they overlap.

dominicm22:03:53

(I'm not seeing anything, just planning)

noprompt22:03:35

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

noprompt22:03:27

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