本文整理汇总了Java中gnu.trove.set.TDoubleSet.size方法的典型用法代码示例。如果您正苦于以下问题:Java TDoubleSet.size方法的具体用法?Java TDoubleSet.size怎么用?Java TDoubleSet.size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gnu.trove.set.TDoubleSet
的用法示例。
在下文中一共展示了TDoubleSet.size方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: equals
import gnu.trove.set.TDoubleSet; //导入方法依赖的package包/类
/** {@inheritDoc) */
public boolean equals( Object other ) {
if (! ( other instanceof TDoubleSet ) ) {
return false;
}
final TDoubleSet that = ( TDoubleSet ) other;
if ( that.size() != this.size() ) {
return false;
}
for ( int i = _states.length; i-- > 0; ) {
if ( _states[i] == FULL ) {
if ( ! that.contains( _set[i] ) ) {
return false;
}
}
}
return true;
}
示例2: equals
import gnu.trove.set.TDoubleSet; //导入方法依赖的package包/类
/** {@inheritDoc} */
public boolean equals( Object other ) {
if ( ! ( other instanceof TDoubleSet ) ) {
return false;
}
TDoubleSet that = ( TDoubleSet ) other;
if ( that.size() != this.size() ) {
return false;
}
for ( int i = _states.length; i-- > 0; ) {
if ( _states[i] == FULL ) {
if ( ! that.contains( _set[i] ) ) {
return false;
}
}
}
return true;
}
示例3: distinct
import gnu.trove.set.TDoubleSet; //导入方法依赖的package包/类
@Override
public final Array<Double> distinct(int limit) {
final int capacity = limit < Integer.MAX_VALUE ? limit : 100;
final TDoubleSet set = new TDoubleHashSet(capacity);
final ArrayBuilder<Double> builder = ArrayBuilder.of(capacity, Double.class);
for (int i=0; i<length(); ++i) {
final double value = getDouble(i);
if (set.add(value)) {
builder.addDouble(value);
if (set.size() >= limit) {
break;
}
}
}
return builder.toArray();
}
示例4: equals
import gnu.trove.set.TDoubleSet; //导入方法依赖的package包/类
public boolean equals(final Object other) {
if (!(other instanceof TDoubleSet)) {
return false;
}
final TDoubleSet that = (TDoubleSet) other;
if (that.size() != this.size()) {
return false;
}
for (int i = _states.length; i-- > 0; ) {
if (_states[i] == FULL) {
if (that.contains(_set[i])) {
return false;
}
}
}
return true;
}
示例5: equals
import gnu.trove.set.TDoubleSet; //导入方法依赖的package包/类
/** {@inheritDoc) */
@Override
public boolean equals( Object other ) {
if (! ( other instanceof TDoubleSet ) ) {
return false;
}
final TDoubleSet that = ( TDoubleSet ) other;
if ( that.size() != this.size() ) {
return false;
}
for ( int i = _states.length; i-- > 0; ) {
if ( _states[i] == FULL ) {
if ( ! that.contains( _set[i] ) ) {
return false;
}
}
}
return true;
}
示例6: equals
import gnu.trove.set.TDoubleSet; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TDoubleSet ) ) {
return false;
}
TDoubleSet that = ( TDoubleSet ) other;
if ( that.size() != this.size() ) {
return false;
}
for ( int i = _states.length; i-- > 0; ) {
if ( _states[i] == FULL ) {
if ( ! that.contains( _set[i] ) ) {
return false;
}
}
}
return true;
}
示例7: equals
import gnu.trove.set.TDoubleSet; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TDoubleSet ) ) {
return false;
}
TDoubleSet that = ( TDoubleSet ) other;
if ( that.size() != this.size() ) {
return false;
}
for ( int i = capacity(); i-- > 0; ) {
if ( _states.get(i) == FULL ) {
if ( ! that.contains( _set.get( i ) ) ) {
return false;
}
}
}
return true;
}