Interface SetQueries<T extends SetQueries<T>>
-
- Type Parameters:
T-
- All Known Implementing Classes:
BitEncodedSet,BitMask,IndexSubset,Place,WeightedBitMask
public interface SetQueries<T extends SetQueries<T>>Specifies common mathematical queries on sets.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleanintersects(T other)default booleanisDisjoint(T other)default booleanisStrictSubsetOf(T other)default booleanisStrictSupersetOf(T other)booleanisSubsetOf(T other)booleanisSupersetOf(T other)booleansetEquality(T other)
-
-
-
Method Detail
-
intersects
boolean intersects(T other)
-
setEquality
boolean setEquality(T other)
-
isSubsetOf
boolean isSubsetOf(T other)
-
isStrictSubsetOf
default boolean isStrictSubsetOf(T other)
-
isSupersetOf
boolean isSupersetOf(T other)
-
isStrictSupersetOf
default boolean isStrictSupersetOf(T other)
-
isDisjoint
default boolean isDisjoint(T other)
-
-