Merged gcj-eclipse branch to trunk.
From-SVN: r120621
This commit is contained in:
parent
c648dedbde
commit
97b8365caf
17478 changed files with 606493 additions and 100744 deletions
|
@ -741,4 +741,15 @@ public class BitSet implements Cloneable, Serializable
|
|||
bits = nd;
|
||||
}
|
||||
}
|
||||
|
||||
// This is used by EnumSet for efficiency.
|
||||
final boolean containsAll(BitSet other)
|
||||
{
|
||||
for (int i = other.bits.length - 1; i >= 0; i--)
|
||||
{
|
||||
if ((bits[i] & other.bits[i]) != other.bits[i])
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue