| 457 | inline bool operator op (float inLHS,const ::Dynamic &inRHS) \ |
| 458 | { return inRHS.IsNumeric() && ((double)inLHS op (double)inRHS); } \ |
| 459 | inline bool operator op (int inLHS,const ::Dynamic &inRHS) \ |
| 460 | { return inRHS.IsNumeric() && (inLHS op (double)inRHS); } |
| 461 | |
| 462 | COMPARE_DYNAMIC_OP( < ) |
| 463 | COMPARE_DYNAMIC_OP( <= ) |