static S firstToLower(S s) { if (empty(s)) ret s; ret Character.toLowerCase(s.charAt(0)) + s.substring(1); }