Default constructor - creates zero with scale 0
()
| 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. |
nothing calls this directly
no test coverage detected