MCPcopy Create free account
hub / github.com/questdb/questdb / notDigit

Method notDigit

core/src/main/java/io/questdb/std/Numbers.java:1094–1096  ·  view source on GitHub ↗
(char c)

Source from the content-addressed store, hash-verified

1092 }
1093
1094 public static boolean notDigit(char c) {
1095 return c < '0' || c > '9';
1096 }
1097
1098 public static double parseDouble(CharSequence sequence) throws NumericException {
1099 return FastDoubleParser.parseDouble(sequence, true);

Callers 12

parseIPv4_0Method · 0.95
parseInt000GreedyMethod · 0.95
parseIntSafelyMethod · 0.95
parseLong000000GreedyMethod · 0.95
parseSubnet0Method · 0.95
parseFloorMethod · 0.95
parseFloorMethod · 0.95
parseIsoWeekFloorMethod · 0.95
parseFloorMethod · 0.95
parseIsoWeekFloorMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected