MurmurHash3.putElements

Pushes an array of elements at once. It is more efficient to push as much data as possible in a single call. On platforms that do not support unaligned reads (MIPS or old ARM chips), the compiler may produce slower code to ensure correctness.

struct MurmurHash3(uint size, uint opt = size_t.sizeof == 8 ? 64 : 32)
pure nothrow @nogc
void
putElements
(
scope const(Element[]) elements...
)

Meta