static int lastIndexOf(S a, S b) { ret a == null || b == null ? -1 : a.lastIndexOf(b); }