XXHTemplate.put

Use this to feed the digest with data. Also implements the std.range.primitives.isOutputRange interface for ubyte and const(ubyte)[].

struct XXHTemplate(HASH, STATE, bool useXXH3)
@safe nothrow @nogc
void
put
(
scope const(ubyte)[] data...
)

Examples

XXHTemplate!(hashtype,statetype,useXXH3) dig;
dig.put(cast(ubyte) 0); //single ubyte
dig.put(cast(ubyte) 0, cast(ubyte) 0); //variadic
ubyte[10] buf;
dig.put(buf); //buffer

Meta