Return true if rhs does not have the same bit values as this bitset.

Synopsis

Declared in <bslstl_bitset.h>

bool
operator!=(bitset const& rhs) const noexcept;

Description

Return true if the specified rhs do not have the same value as this bitset and false otherwise. Two bitset do not have the same value when either the sequence or the value of bits they hold are not the same.

Return Value

true if the bitsets differ, and false otherwise

Parameters

Name

Description

rhs

bitset to compare with this object

Created with MrDocs