it.unimi.dsi.fastutil.doubles
Interface DoubleSet

All Superinterfaces:
Collection, DoubleCollection, Set
All Known Subinterfaces:
DoubleSortedSet
All Known Implementing Classes:
AbstractDoubleSet, AbstractDoubleSortedSet, DoubleAVLTreeSet, DoubleLinkedOpenHashSet, DoubleOpenHashSet, DoubleRBTreeSet, DoubleSets.SynchronizedSet, DoubleSets.UnmodifiableSet, DoubleSortedSets.Singleton, DoubleSortedSets.SynchronizedSortedSet, DoubleSortedSets.UnmodifiableSortedSet, Sets.EmptySet

public interface DoubleSet
extends Set, DoubleCollection

A type-specific Set; provides some additional methods that use polymorphism to reduce type juggling.

See Also:
Set

Method Summary
 boolean remove(double k)
          Note that the corresponding method of the type-specific collection is rem().
 
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
add, addAll, contains, containsAll, doubleIterator, rem, removeAll, retainAll, toArray, toDoubleArray, toDoubleArray
 

Method Detail

remove

public boolean remove(double k)
Note that the corresponding method of the type-specific collection is rem(). This unfortunate situation is caused by the clash with the similarly named index-based method in the List interface.

See Also:
Collection.remove(Object)