All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.wala.util.intset.MutableLongSet Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2002 - 2006 IBM Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 */
package com.ibm.wala.util.intset;

/** */
public interface MutableLongSet extends LongSet {

  /** Set the value of this to be the same as the value of set */
  void copySet(LongSet set);

  /**
   * Add all members of set to this.
   *
   * @return true iff the value of this changes.
   */
  boolean addAll(LongSet set);

  /**
   * Add an integer value to this set.
   *
   * @return true iff the value of this changes.
   */
  boolean add(long i);

  /** Remove an integer from this set. */
  void remove(long i);

  /** Interset this with another set. */
  void intersectWith(LongSet set);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy