isAtSameMomentAs method

bool isAtSameMomentAs(
  1. EDateTime other
)

Returns true if this occurs at the same moment as other.

The comparison is independent of whether the time is in UTC or in the local time zone.

Implementation

bool isAtSameMomentAs(EDateTime other) {
  return _date.isAtSameMomentAs(other._date);
}