definition: |
printCatEvents :: (String -> IO ()) -> ViewConf -> (String,Trace) -> IO () printCatEvents outstr viewConf (label,events) = outstr label >> outstr "\n" >> outstr (take (length label) (repeat '-')) >> mapM_ (\t -> outstr "\n" >> mapM_ (\s -> outstr s >> outstr "\n") ((reverse . (map (prettyShowTerm viewConf))) t)) (catTerms events) >> outstr "\n" |
demand: |
argument 3 |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,{(,)}) |-> _} |
name: |
printCatEvents |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(String -> Prelude.IO ()) -> ViewConf -> (String, [Coosy.Trace.Event]) -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |