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

Method charAt

core/src/main/java/io/questdb/std/Chars.java:1180–1183  ·  view source on GitHub ↗
(int index)

Source from the content-addressed store, hash-verified

1178 public static CharSequence repeat(String s, int times) {
1179 return new CharSequence() {
1180 @Override
1181 public char charAt(int index) {
1182 return s.charAt(index % s.length());
1183 }
1184
1185 @Override
1186 public int length() {

Callers 15

ofMethod · 0.45
addVolumeDefinitionMethod · 0.45
popTokenMethod · 0.45
processArgsMethod · 0.45
rootSubdirMethod · 0.45
stripTrailingSlashMethod · 0.45
compressScopeMethod · 0.45
logResponseMethod · 0.45
isContentLengthMethod · 0.45
parseAlertTargetsMethod · 0.45
setHostPortMethod · 0.45
addDateTemplateNodeMethod · 0.45

Calls 1

lengthMethod · 0.65

Tested by

no test coverage detected