Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ByteArray (2.38 sec)

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

        }
    
        @Override
        public Hasher putBytes(ByteBuffer bytes) {
          stream.write(bytes);
          return this;
        }
    
        @Override
        public HashCode hash() {
          return hashBytes(stream.byteArray(), 0, stream.length());
        }
      }
    
      // Just to access the byte[] without introducing an unnecessary copy
      private static final class ExposedByteArrayOutputStream extends ByteArrayOutputStream {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 3.8K bytes
    - Viewed (0)
Back to top