(@NotNull String name)
| 192 | } |
| 193 | |
| 194 | public static int hash32(@NotNull String name) { |
| 195 | long hash64 = hash64(name); |
| 196 | return (int)(hash64 ^ (hash64 >> 32)); |
| 197 | } |
| 198 | |
| 199 | // PMap<K, V> |
| 200 | public static int hashLog(long initial, @NotNull Class<?> key, @NotNull Class<?> value) { |