#define TTS_LESS | ( | LHS, | |
RHS, | |||
... | |||
) | TTS_RELATION(LHS,RHS, lt , "<" , ">=" , __VA_ARGS__) |
Performs less-than comparison between two expressions.
This comparison is performed by using the proper operator<
overload or by a custom comparison.
LHS,RHS | Expressions to compare. |
... | Optional tag. If equals to REQUIRED , this test will stop the program if it fails. |