Equality operators
Synopses
Declared in <baltzo_localdatetime.h>
Return true if the specified lhs and rhs objects have the same value, and false otherwise. Two LocalTimeDescriptor objects have the same value if all of the corresponding values of their utcOffsetInSeconds, dstInEffectFlag, and description attributes are the same.
bool
operator==(
LocalTimeDescriptor const& lhs,
LocalTimeDescriptor const& rhs);
Return true if the specified lhs and rhs objects have the same value, and false otherwise. Two Zoneinfo objects have the same value if the corresponding value of their identifier attribute is the same and if both store the same sequence of transitions, ordered by time.
bool
operator==(
Zoneinfo const& lhs,
Zoneinfo const& rhs);
Return true if the specified lhs and rhs objects have the same value, and false otherwise. Two ZoneinfoTransition objects have the same value if the corresponding value of their utcTime attribute is the same and both refer to the same descriptor address.
bool
operator==(
ZoneinfoTransition const& lhs,
ZoneinfoTransition const& rhs);
Return true if the specified lhs and rhs objects have the same value, and false otherwise. Two LocalDatetime objects have the same value if all of the corresponding values of their datetimeTz and timeZoneId attributes are the same.
bool
operator==(
LocalDatetime const& lhs,
LocalDatetime const& rhs);
Return true if the specified lhs and rhs objects have the same value, and false otherwise. Two LocalTimePeriod objects have the same value if each of their corresponding descriptor, utcStartTime, and utcEndTime attributes have the same value.
bool
operator==(
LocalTimePeriod const& lhs,
LocalTimePeriod const& rhs);
Return true if the specified lhs and rhs objects have the same value, and false otherwise. Two ZoneinfoBinaryHeader objects have the same value if the corresponding values of their version, numIsGmt, numIsStd, numLeaps, numTransitions, numLocalTimeTypes, and abbrevDataSize attributes are the same.
bool
operator==(
ZoneinfoBinaryHeader const& lhs,
ZoneinfoBinaryHeader const& rhs);
Created with MrDocs