(@Nullable CharSequence str, @NotNull CharSink<?> sink)
| 1300 | } |
| 1301 | |
| 1302 | public static void toLowerCase(@Nullable CharSequence str, @NotNull CharSink<?> sink) { |
| 1303 | if (str != null) { |
| 1304 | toLowerCase(str, 0, str.length(), sink); |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | public static void toLowerCase(@NotNull CharSequence str, int lo, int hi, @NotNull CharSink<?> sink) { |
| 1309 | for (int i = lo; i < hi; i++) { |