Open yupferris opened 3 years ago
It's kindof annoying to use x.bit(0) or x.bit(x.bit_width() - 1) (or similar); .lsb() or .msb() are shorter/clearer and are well-established terms.
x.bit(0)
x.bit(x.bit_width() - 1)
.lsb()
.msb()
It's kindof annoying to use
x.bit(0)
orx.bit(x.bit_width() - 1)
(or similar);.lsb()
or.msb()
are shorter/clearer and are well-established terms.