#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 785 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::BitAndNot< Type, TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 787 行で定義されています。
参照先 Type.
00788 { 00789 Type lhs = static_cast<Type>( TSrc1()(opState) ); 00790 Type rhs = static_cast<Type>( TSrc2()(opState) ); 00791 00792 return lhs & ~rhs; 00793 }