Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BytesHashCode (0.29 sec)

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

       */
      static HashCode fromBytesNoCopy(byte[] bytes) {
        return new BytesHashCode(bytes);
      }
    
      private static final class BytesHashCode extends HashCode implements Serializable {
        final byte[] bytes;
    
        BytesHashCode(byte[] bytes) {
          this.bytes = checkNotNull(bytes);
        }
    
        @Override
        public int bits() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top