Compares the two zoned_time
objects x
and y
. Two zoned_time
objects compare equal if their time points and time zone pointers both compare equal according to operator==
.
x.get_time_zone() == y.get_time_zone() && x.get_sys_time() == y.get_sys_time()
, except that the comparisons are performed on the nonstatic data members of x
and y
directly and no copying is performed.!(x == y)
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/chrono/zoned_time/operator_cmp