BitVecCompare
BitVecCompare Description Compare two bitvectors lexicographically. Comparison is done bit by bit from left to right.
Read MoreBitVecCompareRange
BitVecCompareRange Description Compare ranges of two bitvectors lexicographically.
Read MoreBitVecDisjoint
BitVecDisjoint Description Check if two bitvectors are disjoint (have no common 1-bits).
Read MoreBitVecEquals
BitVecEquals Description Test equality between two bitvectors. Two bitvectors are equal if they have the same length and all bits match.
Read MoreBitVecEqualsRange
BitVecEqualsRange Description Compare specific ranges of two bitvectors for equality.
Read MoreBitVecIsSubset
BitVecIsSubset Description Check if first bitvector is a subset of the second. A bitvector is a subset if all its 1-bits are also 1-bits in the other.
Read MoreBitVecIsSuperset
BitVecIsSuperset Description Check if first bitvector is a superset of the second. A bitvector is a superset if it contains all 1-bits from the other.
Read MoreBitVecNumericalCompare
BitVecNumericalCompare Description Compare two bitvectors as unsigned integers. Treats bitvectors as unsigned binary numbers (LSB first).
Read MoreBitVecOverlaps
BitVecOverlaps Description Check if two bitvectors overlap (have any common 1-bits).
Read MoreBitVecSignedCompare
BitVecSignedCompare Description Compare two bitvectors as signed integers (MSB is sign bit).
Read MoreBitVecWeightCompare
BitVecWeightCompare Description Compare two bitvectors by their Hamming weights (number of 1s).
Read More