Package com.carrotsearch.hppc
Interface ShortSet
-
- All Superinterfaces:
java.lang.Iterable<ShortCursor>,ShortCollection,ShortContainer
- All Known Implementing Classes:
ShortHashSet,ShortScatterSet
@Generated(date="2026-04-06T11:37:44+0000", value="KTypeSet.java") public interface ShortSet extends ShortCollection
A set ofshorts.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanadd(short k)Addskto the set.java.lang.StringvisualizeKeyDistribution(int characters)Visually depict the distribution of keys.
-
-
-
Method Detail
-
add
boolean add(short k)
Addskto the set.- Returns:
- Returns
trueif this element was not part of the set before. Returnsfalseif an equal element is already part of the set, does not replace the existing element with the argument.
-
visualizeKeyDistribution
java.lang.String visualizeKeyDistribution(int characters)
Visually depict the distribution of keys.- Parameters:
characters- The number of characters to "squeeze" the entire buffer into.- Returns:
- Returns a sequence of characters where '.' depicts an empty fragment of the internal buffer and 'X' depicts full or nearly full capacity within the buffer's range and anything between 1 and 9 is between.
-
-