#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 771 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::BitAnd< Type, TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 773 行で定義されています。
参照先 Type.
00774 { 00775 Type lhs = static_cast<Type>( TSrc1()(opState) ); 00776 Type rhs = static_cast<Type>( TSrc2()(opState) ); 00777 00778 return lhs & rhs; 00779 }