definition: |
toTimeString :: CalendarTime -> String toTimeString (CalendarTime _ _ _ h mi s _) = digit2 h ++":"++ digit2 mi ++":"++ digit2 s where digit2 n = if n<10 then ['0',chr(ord '0' + n)] else show n |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Transforms a calendar time into a string containing the time. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({CalendarTime}) |-> _} |
name: |
toTimeString |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
CalendarTime -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |