MCPcopy Create free account
hub / github.com/BaseXdb/basex / textDbl

Method textDbl

basex-core/src/main/java/org/basex/data/DiskData.java:282–286  ·  view source on GitHub ↗
(final int pre, final boolean text)

Source from the content-addressed store, hash-verified

280 }
281
282 @Override
283 public double textDbl(final int pre, final boolean text) {
284 final long value = textRef(pre);
285 return Inline.inlined(value) ? Inline.unpackDouble(value) : toDouble(txt(value, text));
286 }
287
288 @Override
289 public int textLen(final int pre, final boolean text) {

Callers

nothing calls this directly

Calls 5

textRefMethod · 0.95
inlinedMethod · 0.95
unpackDoubleMethod · 0.95
txtMethod · 0.95
toDoubleMethod · 0.45

Tested by

no test coverage detected