Package it.unimi.dsi.fastutil.booleans
Interface BooleanHash.Strategy
- Enclosing interface:
- BooleanHash
public static interface BooleanHash.Strategy
A type-specific hash strategy.
- See Also:
Hash.Strategy
-
Method Summary
-
Method Details
-
hashCode
int hashCode(boolean e)Returns the hash code of the specified element with respect to this hash strategy.- Parameters:
e- an element.- Returns:
- the hash code of the given element with respect to this hash strategy.
-
equals
boolean equals(boolean a, boolean b)Returns true if the given elements are equal with respect to this hash strategy.- Parameters:
a- an element.b- another element.- Returns:
- true if the two specified elements are equal with respect to this hash strategy.
-