JavaScript is disabled on your browser.
Hash functions and related structures.
interface
A
PrimitiveSink
that can compute a hash code after reading the input.
Puts a boolean into this sink.
Puts a byte into this sink.
Puts an array of bytes into this sink.
PrimitiveSink. putBytes (byte[] bytes,
int off,
int len)
Puts a chunk of an array of bytes into this sink.
Puts the remaining bytes of a byte buffer into this sink.
Puts a character into this sink.
Puts a double into this sink.
Puts a float into this sink.
Puts an int into this sink.
Puts a long into this sink.
Puts a short into this sink.
Puts a string into this sink using the given charset.
Puts each 16-bit code unit from the
CharSequence
into this sink.
Wraps a
PrimitiveSink
as an
OutputStream
, so it is easy to
funnel
an object to a
PrimitiveSink
if there is already a way to write the contents of
the object to an
OutputStream
.
void
Sends a stream of data from the from
object into the sink into
.