Loading...
Searching...
No Matches
Go to the documentation of this file.
8#ifndef domtscondition_h_
9#define domtscondition_h_
17static inline bool less(
int excepted,
int actual)
19 return actual < excepted;
22static inline bool less_or_equals(
int excepted,
int actual)
24 return actual <= excepted;
27static inline bool greater(
int excepted,
int actual)
29 return actual > excepted;
32static inline bool greater_or_equals(
int excepted,
int actual)
34 return actual >= excepted;