SolInt constructor
SolInt(
- int bits
Implementation
SolInt(this.bits) {
if (bits <= 0 || bits > 256 || bits % 8 != 0) {
throw ArgumentError('int bits must be a multiple of 8 in [8..256], got $bits');
}
}