/** * Creates a new <code>TLongDoubleHashMap</code> instance containing * all of the entries in the map passed in. * * @param map a <tt>TLongDoubleMap</tt> that will be duplicated. */ public TLongDoubleHashMap( TLongDoubleMap map ) { super( map.size() ); if ( map instanceof TLongDoubleHashMap ) { TLongDoubleHashMap hashmap = ( TLongDoubleHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_key = hashmap.no_entry_key; this.no_entry_value = hashmap.no_entry_value; //noinspection RedundantCast if ( this.no_entry_key != ( long ) 0 ) { Arrays.fill( _set, this.no_entry_key ); } //noinspection RedundantCast if ( this.no_entry_value != ( double ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** {@inheritDoc} */ public void putAll( TLongDoubleMap map ) { ensureCapacity( map.size() ); TLongDoubleIterator iter = map.iterator(); while ( iter.hasNext() ) { iter.advance(); this.put( iter.key(), iter.value() ); } }
/** {@inheritDoc} */ @Override public boolean equals( Object other ) { if ( ! ( other instanceof TLongDoubleMap ) ) { return false; } TLongDoubleMap that = ( TLongDoubleMap ) other; if ( that.size() != this.size() ) { return false; } double[] values = _values; byte[] states = _states; double this_no_entry_value = getNoEntryValue(); double that_no_entry_value = that.getNoEntryValue(); for ( int i = values.length; i-- > 0; ) { if ( states[i] == FULL ) { long key = _set[i]; double that_value = that.get( key ); double this_value = values[i]; if ( ( this_value != that_value ) && ( this_value != this_no_entry_value ) && ( that_value != that_no_entry_value ) ) { return false; } } } return true; }
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException { // VERSION in.readByte(); // MAP _map = ( TLongDoubleMap ) in.readObject(); }
/** {@inheritDoc} */ @Override public void putAll( TLongDoubleMap map ) { ensureCapacity( map.size() ); TLongDoubleIterator iter = map.iterator(); while ( iter.hasNext() ) { iter.advance(); this.put( iter.key(), iter.value() ); } }
/** {@inheritDoc} */ @Override public boolean equals( Object other ) { if ( ! ( other instanceof TLongDoubleMap ) ) { return false; } TLongDoubleMap that = ( TLongDoubleMap ) other; if ( that.size() != this.size() ) { return false; } TDoubleOffheapArray values = _values; TByteOffheapArray states = _states; double this_no_entry_value = getNoEntryValue(); double that_no_entry_value = that.getNoEntryValue(); for ( int i = capacity(); i-- > 0; ) { if ( states.get( i ) == FULL ) { long key = _set.get( i ); double that_value = that.get( key ); double this_value = values.get( i ); if ( ( this_value != that_value ) && ( this_value != this_no_entry_value ) && ( that_value != that_no_entry_value ) ) { return false; } } } return true; }
@Override public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException { // VERSION in.readByte(); // MAP _map = ( TLongDoubleMap ) in.readObject(); }
/** * Creates a wrapper that decorates the specified primitive map. * * @param map the <tt>TLongDoubleMap</tt> to wrap. */ public TLongDoubleMapDecorator( TLongDoubleMap map ) { super(); this._map = map; }
/** * Returns a reference to the map wrapped by this decorator. * * @return the wrapped <tt>TLongDoubleMap</tt> instance. */ public TLongDoubleMap getMap() { return _map; }