MCPcopy Create free account
hub / github.com/e2wugui/zeze / strtod

Method strtod

ZezeJava/ZezeJava/src/main/java/Zeze/Util/JsonReader.java:1117–1119  ·  view source on GitHub ↗
(double d, int e)

Source from the content-addressed store, hash-verified

1115 }
1116
1117 static double strtod(double d, int e) {
1118 return e >= 0 ? d * EXP[e] : (e < -308 ? 0 : d / EXP[-e]);
1119 }
1120
1121 public int parseInt() {
1122 final byte[] buffer = buf;

Callers 4

parseIntMethod · 0.95
parseLongMethod · 0.95
parseDoubleMethod · 0.95
parseNumberMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected