Function operator==
Synopsis
#include <include/bitformat.hpp>
bool operator==(BitInFormat const &other) const
Description
- Parameters
other
- the target object to compare to.- Returns
- true if this format is equal to "other".
Source
Lines 529-531 in src/bitformat.cpp. Line 75 in include/bitformat.hpp.
bool BitInFormat::operator==( const BitInFormat& other ) const {
return mValue == other.value();
}