Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BytesHashCode (0.15 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top