static Matcher regexpIC(Pattern pat, S s) { ret pat.matcher(unnull(s)); } static Matcher regexpIC(S pat, S s) { ret compileRegexpIC(pat).matcher(unnull(s)); } static Pattern regexpIC(S pat) { ret compileRegexpIC(pat); }