Uses of Class
com.github.javabdd.BitString

  • Uses of BitString in com.github.javabdd

    Methods in com.github.javabdd with parameters of type BitString
    Modifier and Type
    Method
    Description
    boolean
    BitString.and(BitString set)
    Logically ANDs this bit set with the specified set of bits.
    boolean
    BitString.contains(BitString other)
    Check if this set contains all bits of the given set.
    void
    BitString.copyBits(BitString set)
    Copies the values of the bits in the specified set into this set.
    boolean
    BitString.intersectionEmpty(BitString other)
    Check if the intersection of the two sets is empty.
    boolean
    BitString.minus(BitString set)
    Logically subtracts this bit set with the specified set of bits.
    boolean
    BitString.or(BitString set)
    Logically ORs this bit set with the specified set of bits.
    boolean
    BitString.or_upTo(BitString set, int bit)
    Logically ORs this bit set with the specified set of bits.
    boolean
    BitString.xor(BitString set)
    Logically XORs this bit set with the specified set of bits.