BitVecRemove
BitVecRemove Description Remove a bit at given index from bitvector. Shifts all bits after the index to the left.
Read MoreBitVecRemoveAll
BitVecRemoveAll Description Remove all occurrences of a specific bit value. Returns the number of bits that were removed.
Read MoreBitVecRemoveFirst
BitVecRemoveFirst Description Remove the first occurrence of a specific bit value. Returns true if a bit was found and removed, false otherwise.
Read MoreBitVecRemoveLast
BitVecRemoveLast Description Remove the last occurrence of a specific bit value. Returns true if a bit was found and removed, false otherwise.
Read MoreBitVecRemoveRange
BitVecRemoveRange Description Remove multiple consecutive bits starting at a specific position. All bits after the removed range are shifted left.
Read More