Define CHECK_COMPARE¶ Defined in File Shell.hpp Define Documentation¶ CHECK_COMPARE(first, relop, second)¶[source] Fail if first relop second is false. relop must be a relational operator token: <, <=, >, >=, ==, or !=. CHECK_COMPARE(a, <, b); // fails if a >= b See also CHECK_COMPARE_TEXT Parameters: first – Left-hand operand. relop – Relational operator. second – Right-hand operand.