@brief Inverse of stack_is_equal. */
| 241 | |
| 242 | /** @brief Inverse of stack_is_equal. */ |
| 243 | bool stack_is_not_equal(const Stack* stk1, const Stack* stk2) { |
| 244 | return !stack_is_equal(stk1, stk2); |
| 245 | } |
| 246 | |
| 247 | |
| 248 | /** @brief Lexicographic less-than over the underlying vector bytes. */ |
nothing calls this directly
no test coverage detected