it.unimi.dsi.fastutil.floats
Interface FloatSet

All Superinterfaces:
Collection, FloatCollection, Set
All Known Subinterfaces:
FloatSortedSet
All Known Implementing Classes:
AbstractFloatSet, AbstractFloatSortedSet, FloatAVLTreeSet, FloatLinkedOpenHashSet, FloatOpenHashSet, FloatRBTreeSet, FloatSets.SynchronizedSet, FloatSortedSets.Singleton, FloatSortedSets.SynchronizedSortedSet, Sets.EmptySet

public interface FloatSet
extends Set, FloatCollection

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

See Also:
Set

Method Summary
 boolean remove(float 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.floats.FloatCollection
add, addAll, contains, containsAll, floatIterator, rem, removeAll, retainAll, toArray, toFloatArray, toFloatArray
 

Method Detail

remove

public boolean remove(float 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)