本文整理汇总了Java中gnu.trove.TIntCollection类的典型用法代码示例。如果您正苦于以下问题:Java TIntCollection类的具体用法?Java TIntCollection怎么用?Java TIntCollection使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
TIntCollection类属于gnu.trove包,在下文中一共展示了TIntCollection类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: removeAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean removeAll( TIntCollection collection ) {
if ( this == collection ) {
clear();
return true;
}
boolean changed = false;
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
int element = iter.next();
if ( remove( element ) ) {
changed = true;
}
}
return changed;
}
示例2: removeAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean removeAll( TIntCollection collection ) {
if ( collection == this ) {
clear();
return true;
}
boolean changed = false;
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
int element = iter.next();
if ( remove( element ) ) {
changed = true;
}
}
return changed;
}
示例3: retainAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean retainAll( TIntCollection collection ) {
if ( this == collection ) {
return false;
}
boolean modified = false;
TIntIterator iter = iterator();
while ( iter.hasNext() ) {
if ( ! collection.contains( iter.next() ) ) {
iter.remove();
modified = true;
}
}
return modified;
}
示例4: TIntHashSet
import gnu.trove.TIntCollection; //导入依赖的package包/类
/**
* Creates a new <code>TIntHashSet</code> instance that is a copy
* of the existing set.
*
* @param collection a <tt>TIntSet</tt> that will be duplicated.
*/
public TIntHashSet( TIntCollection collection ) {
this( Math.max( collection.size(), DEFAULT_CAPACITY ) );
if ( collection instanceof TIntHashSet ) {
TIntHashSet hashset = ( TIntHashSet ) collection;
this._loadFactor = hashset._loadFactor;
this.no_entry_value = hashset.no_entry_value;
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _set, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
addAll( collection );
}
示例5: addAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean addAll( TIntCollection collection ) {
boolean changed = false;
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
int element = iter.next();
if ( add( element ) ) {
changed = true;
}
}
return changed;
}
示例6: retainAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean retainAll( TIntCollection collection ) {
if ( this == collection ) {
return false;
}
boolean modified = false;
TIntIterator iter = iterator();
while ( iter.hasNext() ) {
if ( ! collection.contains( iter.next() ) ) {
iter.remove();
modified = true;
}
}
return modified;
}
示例7: retainAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean retainAll(TIntCollection collection) {
boolean modified = false;
TIntIterator iter = iterator();
while (iter.hasNext()) {
if (!collection.contains(iter.next())) {
iter.remove();
modified = true;
}
}
return modified;
}
示例8: containsAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TIntCollection collection ) {
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
if ( ! TObjectIntCustomHashMap.this.containsValue( iter.next() ) ) {
return false;
}
}
return true;
}
示例9: containsAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TIntCollection collection ) {
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
int element = iter.next();
if ( ! contains( element ) ) {
return false;
}
}
return true;
}
示例10: removeAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean removeAll( TIntCollection collection ) {
boolean changed = false;
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
int element = iter.next();
if ( remove( element ) ) {
changed = true;
}
}
return changed;
}
示例11: containsAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll(TIntCollection collection) {
if (isEmpty())
return false;
for (TIntIterator it = collection.iterator(); it.hasNext();) {
int i = it.next();
if (!(contains(i)))
return false;
}
return true;
}
示例12: containsAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TIntCollection collection ) {
if ( this == collection ) {
return true;
}
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
int element = iter.next();
if ( ! contains( element ) ) {
return false;
}
}
return true;
}
示例13: removeAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean removeAll(TIntCollection collection) {
boolean modified = false;
TIntIterator iter = iterator();
while (iter.hasNext()) {
if (collection.contains(iter.next())) {
iter.remove();
modified = true;
}
}
return modified;
}
示例14: addAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean addAll(TIntCollection collection) {
boolean ret = false;
for (TIntIterator it = collection.iterator(); it.hasNext();) {
int i = it.next();
if (add(i))
ret = true;
}
return ret;
}
示例15: containsAll
import gnu.trove.TIntCollection; //导入依赖的package包/类
public boolean containsAll( TIntCollection collection ) {
if ( collection == this ) {
return true;
}
TIntIterator iter = collection.iterator();
while ( iter.hasNext() ) {
if ( ! TIntObjectHashMap.this.containsKey( iter.next() ) ) {
return false;
}
}
return true;
}