#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 811 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::BitOr< Type, TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 813 行で定義されています。
参照先 Type.
00814 { 00815 Type lhs = static_cast<Type>( TSrc1()(opState) ); 00816 Type rhs = static_cast<Type>( TSrc2()(opState) ); 00817 00818 return lhs | rhs; 00819 }