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