Closed leijurv closed 7 years ago
In the JVM, boolean hashcode is implemented as such:
public static int hashCode(boolean value) { return value ? 1231 : 1237; }
We can take advantage of this...
In the JVM, boolean hashcode is implemented as such:
We can take advantage of this...