C_DateAndTime.CompareCalendarTime

From Warcraft Wiki
Jump to navigation Jump to search

Compares two dates with eachother.

comparison = C_DateAndTime.CompareCalendarTime(lhsCalendarTime, rhsCalendarTime)

Arguments

lhsCalendarTime
CalendarTime - left-hand side time
rhsCalendarTime
CalendarTime - right-hand side time
Field Type Description
year number The current year (e.g. 2019)
month number The current month [1-12]
monthDay number The current day of the month [1-31]
weekday number The current day of the week (1=Sunday, 2=Monday, ..., 7=Saturday)
hour number The current time in hours [0-23]
minute number The current time in minutes [0-59]

Returns

comparison
number
1 : rhsCalendarTime is at a later time
0 : rhsCalendarTime is at the same time
-1 : rhsCalendarTime is at an earlier time

Patch changes

Battle for Azeroth Patch 8.1.0 (2018-12-11): Added.