#include <GenericOperation.h>
Public メソッド | |
RegisterType | operator() (OpEmulationState *opState) |
GenericOperation.h の 621 行で定義されています。
RegisterType Onikiri::EmulatorUtility::Operation::BorrowOfSub< Type, TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 623 行で定義されています。
参照先 Type.
00624 { 00625 Type lhs = static_cast<Type>( TSrc1()(opState) ); 00626 Type rhs = static_cast<Type>( TSrc2()(opState) ); 00627 00628 if (lhs < rhs) 00629 return 1; 00630 else 00631 return 0; 00632 }