(final int pre, final boolean text)
| 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) { |
nothing calls this directly
no test coverage detected