putBlocks

Pushes an array of blocks at once. It is more efficient to push as much data as possible in a single call. On platform that does not support unaligned reads (some old ARM chips), it is forbidden to pass non aligned data.

@safe pure nothrow @nogc
static if(__VERSION__ < 2072)
void
putBlocks
(
H
Block = H.Block
)
(
ref H hasher
,
scope const(Block[]) blocks...
)

Meta