#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 850 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::BitXor< Type, TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 852 行で定義されています。
参照先 Type.
00853 { 00854 Type lhs = static_cast<Type>( TSrc1()(opState) ); 00855 Type rhs = static_cast<Type>( TSrc2()(opState) ); 00856 00857 return lhs ^ rhs; 00858 }