Constructors
Declared in <absl/crc/crc32c.h>
Construct a zero-initialized CRC32C value.
constexpr
crc32c_t() = default;
» more...
Copy-construct a CRC32C value.
constexpr
crc32c_t(crc32c_t const& other) = default;
» more...
Construct a CRC32C value from a raw 32-bit checksum.
constexpr
explicit
crc32c_t(uint32_t crc);
» more...
| Name | Description |
|---|---|
| other | The source object. |
| crc | The raw checksum value. |