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

Method Decimal256

core/src/main/java/io/questdb/std/Decimal256.java:246–252  ·  view source on GitHub ↗

Default constructor - creates zero with scale 0

()

Source from the content-addressed store, hash-verified

244 * Default constructor - creates zero with scale 0
245 */
246 public Decimal256() {
247 this.hh = 0;
248 this.hl = 0;
249 this.lh = 0;
250 this.ll = 0;
251 this.scale = 0;
252 }
253
254 /**
255 * Constructor with initial values.

Callers

nothing calls this directly

Calls 1

validateScaleMethod · 0.95

Tested by

no test coverage detected