Equality operators

Synopses

Declared in <bdlde_base64decoderoptions.h>

Return true if the specified lhs and rhs have the same value.

bool
operator==(
    Base64EncoderOptions const& lhs,
    Base64EncoderOptions const& rhs);

Return true if the specified lhs and rhs have the same value.

bool
operator==(
    Base64DecoderOptions const& lhs,
    Base64DecoderOptions const& rhs);

Return true if the specified lhs and rhs MD5 digests have the same value.

bool
operator==(
    Md5 const& lhs,
    Md5 const& rhs);

Return true if the specified lhs and rhs checksums have the same value.

bool
operator==(
    Crc64 const& lhs,
    Crc64 const& rhs);

Return true if the specified lhs and rhs checksums have the same value, and false otherwise.

bool
operator==(
    Crc32 const& lhs,
    Crc32 const& rhs);

Return true if the specified lhs and rhs SHA digests have the same value.

bool
operator==(
    Sha224 const& lhs,
    Sha224 const& rhs);

Return true if the specified lhs and rhs SHA digests have the same value.

bool
operator==(
    Sha256 const& lhs,
    Sha256 const& rhs);

Return true if the specified lhs and rhs SHA digests have the same value.

bool
operator==(
    Sha384 const& lhs,
    Sha384 const& rhs);

Return true if the specified lhs and rhs SHA digests have the same value.

bool
operator==(
    Sha512 const& lhs,
    Sha512 const& rhs);

Return true if the specified lhs and rhs SHA‐1 digests have the same value.

bool
operator==(
    Sha1 const& lhs,
    Sha1 const& rhs);

Return Value

true if lhs and rhs have the same value, and false otherwise

Parameters

Name

Description

lhs

left‐hand‐side options object

rhs

right‐hand‐side options object

Created with MrDocs