ReadonlyctxCreates an extraction operation. Bits are indexed starting from 1 from the most right one (least significant) increasing to left (most significant)
const x = BitVec.const('x', 8);
x.extract(6, 2)
// Extract(6, 2, x)
x.extract(6, 2).sort
// BitVec(5)
The most significant bit to be extracted
The least significant bit to be extracted
Represents Bit Vector expression