2.5.2. Bitset

TODO.

2.5.2.1. Instruction

target = bitset.clear op1 op2 [bitset::Clear]
Target:bitset {
Operator 1:bitset {
Operator 2:bitset {

Clears the bits set in op2 from those set in op1 and returns the result. Both operands must be of the same bitset type.

target = bitset.has op1 op2 [bitset::Has]
Target:bool
Operator 1:bitset {
Operator 2:bitset {

Returns True if all bits in op2 are set in op1. Both operands must be of the same bitset type.

target = bitset.set op1 op2 [bitset::Set]
Target:bitset {
Operator 1:bitset {
Operator 2:bitset {

Adds the bits set in op2 to those set in op1 and returns the result. Both operands must be of the same bitset type.