definition:
|
compareCalendarTime :: CalendarTime -> CalendarTime -> Ordering
compareCalendarTime ct1 ct2 =
compareClockTime (toClockTime ct1) (toClockTime ct2)
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Compares two calendar times.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {EQ,GT,LT}}
|
name:
|
compareCalendarTime
|
precedence:
|
no precedence defined
|
result-values:
|
{EQ,GT,LT}
|
signature:
|
CalendarTime -> CalendarTime -> Prelude.Ordering
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|