| 32 | bool operator == (RarTime &rt) {return itime==rt.itime;} |
| 33 | bool operator != (RarTime &rt) {return itime!=rt.itime;} |
| 34 | bool operator < (RarTime &rt) {return itime<rt.itime;} |
| 35 | bool operator <= (RarTime &rt) {return itime<rt.itime || itime==rt.itime;} |
| 36 | bool operator > (RarTime &rt) {return itime>rt.itime;} |
| 37 | bool operator >= (RarTime &rt) {return itime>rt.itime || itime==rt.itime;} |
nothing calls this directly
no outgoing calls
no test coverage detected