matches ~pattern name returns true iff name matches pattern.
For instance, the exact set of names such that matches ~pattern:"foo.bar.blah" name
is:
fold_dot_suffixes "foo.bar.blah" ~init ~f is
f "foo.bar.blah" (f "bar.blah" (f "blah" init)))