definition:
|
showUnsafe :: AOutFormat -> [String] -> String
showUnsafe _ [] = "safe"
showUnsafe ANote (_:_) = "unsafe"
showUnsafe AText [mod] = "unsafe (due to module " ++ mod ++ ")"
showUnsafe AText ms@(_:_:_) = "unsafe (due to modules " ++ unwords ms ++ ")"
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Show the information about unsafe modules as a string.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> {:} || ({ANote},{:}) |-> {:} || ({AText},{:}) |-> _}
|
name:
|
showUnsafe
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.Types.AOutFormat -> [String] -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|