Interface MutableLongSet

All Superinterfaces:
LongSet
All Known Implementing Classes:
MutableSparseLongSet

public interface MutableLongSet extends LongSet
  • Method Details

    • copySet

      void copySet(LongSet set)
      Set the value of this to be the same as the value of set
    • addAll

      boolean addAll(LongSet set)
      Add all members of set to this.
      Returns:
      true iff the value of this changes.
    • add

      boolean add(long i)
      Add an integer value to this set.
      Returns:
      true iff the value of this changes.
    • remove

      void remove(long i)
      Remove an integer from this set.
    • intersectWith

      void intersectWith(LongSet set)
      Interset this with another set.