BloombergLP::bdlde::Crc32::Crc32

Constructors

Synopses

Declared in <bdlde_crc32.h>

Construct a checksum having the value corresponding to no data having been provided (i.e., having the value 0).

Crc32();
» more...

Construct a checksum having the value of the specified original checksum.

Crc32(Crc32 const& original);
» more...

Construct a checksum corresponding to the specified data having the specified length (in bytes). Note that if data is 0, then length also must be 0.

Crc32(
    void const* data,
    std::size_t length);
» more...