#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 837 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::BitNor< Type, TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 839 行で定義されています。
参照先 Type.
00840 { 00841 Type lhs = static_cast<Type>( TSrc1()(opState) ); 00842 Type rhs = static_cast<Type>( TSrc2()(opState) ); 00843 00844 return ~(lhs | rhs); 00845 }