Hash digestion of standard types.
TODO use:
static if (hasMember!(hasher, "putStaticArray")) { digest.putStaticArray((cast(ubyte*)&value)[0 .. value.sizeof]); } else { digest.put((cast(ubyte*)&value)[0 .. value.sizeof]); }
Digest value into digest.
Digest the array value.
Is true iff T is repesented as a memory address.
See Source File
Hash digestion of standard types.
TODO use:
static if (hasMember!(hasher, "putStaticArray")) { digest.putStaticArray((cast(ubyte*)&value)[0 .. value.sizeof]); } else { digest.put((cast(ubyte*)&value)[0 .. value.sizeof]); }