(@Nullable Object v)
| 47 | } |
| 48 | |
| 49 | public static int hash(@Nullable Object v) { |
| 50 | return v == null ? 0 : v.hashCode(); |
| 51 | } |
| 52 | |
| 53 | /** Computes the hash code of a {@code double} value. Equivalent to |
| 54 | * {@link Double}{@code .hashCode(double)}, but that method was only |