eqvYearMonthDay method

bool eqvYearMonthDay(
  1. DateTime other
)

Return true when this DateTime and other have the same year, month, and day.

Implementation

bool eqvYearMonthDay(DateTime other) =>
    Eq.dateEqYearMonthDay.eqv(this, other);