static S repeatString(S s, int n) { StringBuilder buf = new(l(s)*n); for (int i = 0; i < n; i++) buf.append(s); ret str(buf); }