mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Comparison of timespec structures
Functions | |
bool | mx::sys::tscomp::operator< (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator < (see caveats) | |
bool | mx::sys::tscomp::operator> (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator > (see caveats) | |
bool | mx::sys::tscomp::operator== (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator == (see caveats) | |
bool | mx::sys::tscomp::operator<= (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator <= (see caveats) | |
bool | mx::sys::tscomp::operator>= (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator >= (see caveats) | |
bool mx::sys::tscomp::operator< | ( | timespec const & | tsL, |
timespec const & | tsR | ||
) |
Timespec comparison operator < (see caveats)
Caveats:
tv_nsec
field does not exceed 999999999 nanoseconds[in] | tsL | the left hand side of the comparison |
[in] | tsR | the right hand side of the comparison |
Definition at line 295 of file timeUtils.cpp.
bool mx::sys::tscomp::operator<= | ( | timespec const & | tsL, |
timespec const & | tsR | ||
) |
Timespec comparison operator <= (see caveats)
Caveats:
tv_nsec
field does not exceed 999999999 nanoseconds.[in] | tsL | the left hand side of the comparison |
[in] | tsR | the right hand side of the comparison |
Definition at line 310 of file timeUtils.cpp.
bool mx::sys::tscomp::operator== | ( | timespec const & | tsL, |
timespec const & | tsR | ||
) |
Timespec comparison operator == (see caveats)
Caveats:
tv_nsec
field does not exceed 999999999 nanoseconds[in] | tsL | the left hand side of the comparison |
[in] | tsR | the right hand side of the comparison |
Definition at line 305 of file timeUtils.cpp.
bool mx::sys::tscomp::operator> | ( | timespec const & | tsL, |
timespec const & | tsR | ||
) |
Timespec comparison operator > (see caveats)
Caveats:
tv_nsec
field does not exceed 999999999 nanoseconds[in] | tsL | the left hand side of the comparison |
[in] | tsR | the right hand side of the comparison |
Definition at line 300 of file timeUtils.cpp.
bool mx::sys::tscomp::operator>= | ( | timespec const & | tsL, |
timespec const & | tsR | ||
) |
Timespec comparison operator >= (see caveats)
Caveats:
tv_nsec
field does not exceed 999999999 nanoseconds[in] | tsL | the left hand side of the comparison |
[in] | tsR | the right hand side of the comparison |
Definition at line 315 of file timeUtils.cpp.