Use this template to get the type which is returned by a digest's finish method.
import std.digest.crc; assert(is(DigestType!(CRC32) == ubyte[4]));
import std.digest.crc; CRC32 dig; dig.start(); DigestType!CRC32 result = dig.finish();
See Implementation
Use this template to get the type which is returned by a digest's finish method.