true
if the first datetime is the same or after the second datetime, otherwise returns false
.DATETIME_IS_SAME_OR_AFTER("2011-10-10T12:13:14Z", "2011-10-09T12:13:14Z")
true
DATETIME_IS_SAME_OR_AFTER("2011-10-09T12:13:14Z", "2011-10-10T12:13:14Z")
false
DATETIME_IS_SAME_OR_AFTER("2011-10-10T12:13:14Z", "2011-10-10T12:13:14Z")
true
DATETIME_IS_SAME_OR_AFTER("2012-10-10T12:13:14Z", "2011-10-09T12:13:14Z", "year")
true