#include <GenericOperation.h>
Public メソッド | |
bool | operator() (const ArgType lhs, const ArgType rhs) const |
GenericOperation.h の 291 行で定義されています。
bool Onikiri::EmulatorUtility::Operation::IntCondNotEqualNthBit< Type, n, ArgType >::operator() | ( | const ArgType | lhs, | |
const ArgType | rhs | |||
) | const [inline] |
GenericOperation.h の 293 行で定義されています。
参照先 Type.
00294 { 00295 return (static_cast<Type>(lhs) & ((Type)1 << n)) != (static_cast<Type>(rhs) & ((Type)1 << n)); 00296 }