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) More... | |
bool | mx::sys::tscomp::operator> (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator > (see caveats) More... | |
bool | mx::sys::tscomp::operator== (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator == (see caveats) More... | |
bool | mx::sys::tscomp::operator<= (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator <= (see caveats) More... | |
bool | mx::sys::tscomp::operator>= (timespec const &tsL, timespec const &tsR) |
Timespec comparison operator >= (see caveats) More... | |
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 306 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 327 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 320 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 313 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 334 of file timeUtils.cpp.