NAME
TimeOfDayIsAtOrAfter — Check whether given time-of-day is at or after the second.
SYNOPSIS
TimeOfDayIsAtOrAfter FirstTimeOfDay SecondTimeOfDay
DESCRIPTION
Return Value
1 First time-of-day happens at or after the second.
0 First time-of-day does not happen at or after the second.
Arguments
FirstTimeOfDayString in time-of-day format.
SecondTimeOfDayString in time-of-day format.
More Info
This command is like greater than or equal to (>=). Note this command is effectively ![TimeOfDayIsBefore $FirstTimeOfDay $SecondTimeOfDay] but still we include it for the sake of convenience / expressiveness.

For information about how to configure the format, see About Date and Time Commands.


For information regarding exceptions / errors, see here.
EXAMPLES
% TimeOfDayIsAtOrAfter 01:02:03 01:02:03
1
% TimeOfDayIsAtOrAfter 01:02:03 01:00:00
1
SEE ALSO
SetTimeOfDayFormat, TimeOfDayIsAfter, TimeOfDayIsAt, TimeOfDayIsAtOrBefore, TimeOfDayIsBefore, TimeOfDayIsBetween
KEYWORDS
check, time, verification