Default constructor - creates zero with scale 0
()
| 213 | * Default constructor - creates zero with scale 0 |
| 214 | */ |
| 215 | public Decimal128() { |
| 216 | this.high = 0; |
| 217 | this.low = 0; |
| 218 | this.scale = 0; |
| 219 | } |
| 220 | |
| 221 | public Decimal128(long high, long low) { |
| 222 | this.high = high; |
nothing calls this directly
no test coverage detected