public abstract class AbstractIntSet extends Object implements IntSet
Title:
Description:
Copyright: Copyright (c) 2007
Company: Clark & Parsia, LLC.
| Constructor and Description |
|---|
AbstractIntSet() |
| Modifier and Type | Method and Description |
|---|---|
void |
addAll(IntSet values)
Adds all the integers from another set to this set.
|
protected void |
added(int low,
int high) |
int |
max()
Returns the maximum integer in this set.
|
int |
min()
Returns the minimum integer in this set.
|
protected void |
removed(int low,
int high) |
String |
toString() |
IntSet |
union(IntSet values)
Creates a new IntSet that is the union of this set and the given set.
|
public void addAll(IntSet values)
IntSetprotected void added(int low,
int high)
public int max()
IntSetpublic int min()
IntSetprotected void removed(int low,
int high)
public IntSet union(IntSet values)
IntSetCopyright © 2019. All rights reserved.