definition: |
addMinutes :: Int -> ClockTime -> ClockTime addMinutes n (CTime ctime) = CTime (ctime + (n*60)) |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Adds minutes to a given time. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{CTime}) |-> {CTime}} |
name: |
addMinutes |
precedence: |
no precedence defined |
result-values: |
{CTime} |
signature: |
Prelude.Int -> ClockTime -> ClockTime |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |