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 not equal to "other".
Source
Lines 533-535 in src/bitformat.cpp. Line 81 in include/bitformat.hpp.
bool BitInFormat::operator!=( const BitInFormat& other ) const {
return !( *this == other );
}