Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LongHashCode (0.21 sec)

  1. android/guava/src/com/google/common/hash/HashCode.java

       *
       * @since 15.0 (since 12.0 in HashCodes)
       */
      public static HashCode fromLong(long hash) {
        return new LongHashCode(hash);
      }
    
      private static final class LongHashCode extends HashCode implements Serializable {
        final long hash;
    
        LongHashCode(long hash) {
          this.hash = hash;
        }
    
        @Override
        public int bits() {
          return 64;
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 12.6K bytes
    - Viewed (0)
Back to top