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

Method parseInt

core/src/main/java/io/questdb/std/Numbers.java:1290–1295  ·  view source on GitHub ↗
(Utf8Sequence sequence)

Source from the content-addressed store, hash-verified

1288 }
1289
1290 public static int parseInt(Utf8Sequence sequence) throws NumericException {
1291 if (sequence == null) {
1292 throw NumericException.instance().put("null string");
1293 }
1294 return parseInt0(sequence.asAsciiCharSequence(), 0, sequence.size());
1295 }
1296
1297 public static int parseInt(Utf8Sequence sequence, int p, int lim) throws NumericException {
1298 if (sequence == null) {

Callers 15

exportToParquetMethod · 0.95
parseMethod · 0.95
addColumnValueMethod · 0.95
onEventMethod · 0.95
addColumnValueMethod · 0.95
testIntEdgeMethod · 0.95
testParseIntMethod · 0.95
testParseIntEmptyMethod · 0.95
testParseIntNullMethod · 0.95
testParseIntOverflow1Method · 0.95
testParseIntOverflow2Method · 0.95

Calls 6

instanceMethod · 0.95
parseInt0Method · 0.95
putMethod · 0.65
asAsciiCharSequenceMethod · 0.65
sizeMethod · 0.65
lengthMethod · 0.65

Tested by 15

exportToParquetMethod · 0.76
addColumnValueMethod · 0.76
onEventMethod · 0.76
addColumnValueMethod · 0.76
testIntEdgeMethod · 0.76
testParseIntMethod · 0.76
testParseIntEmptyMethod · 0.76
testParseIntNullMethod · 0.76
testParseIntOverflow1Method · 0.76
testParseIntOverflow2Method · 0.76
testParseIntOverflow3Method · 0.76