#define TTS_CONSTEXPR_GREATER_EQUAL | ( | LHS, | |
RHS, | |||
... | |||
) | TTS_CEXPR_RELATION(LHS,RHS, ge , ">=" , "<=", __VA_ARGS__) |
Performs greater-or-equal-than comparison between two expressions at compile-time.
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. |