MCPcopy Index your code
hub / github.com/questdb/questdb / toLowerCase

Method toLowerCase

core/src/main/java/io/questdb/std/Chars.java:1302–1306  ·  view source on GitHub ↗
(@Nullable CharSequence str, @NotNull CharSink<?> sink)

Source from the content-addressed store, hash-verified

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++) {

Callers 15

getStrAMethod · 0.95
getStrBMethod · 0.95
parseVarcharArrayMethod · 0.80
resolveParametersMethod · 0.80
parseVarcharArrayMethod · 0.80
resolveParametersMethod · 0.80
getTimestampIndexMethod · 0.80
mainMethod · 0.80

Calls 3

lengthMethod · 0.65
putMethod · 0.65
charAtMethod · 0.45