CurryInfo: curry-source-1.2.0 / Language.Curry.StringClassifier.unscan

definition:
unscan :: Tokens -> String
unscan (ModuleHead s:ts) = s++case ts of 
                                (Code (_:c):ts') -> unscan (Code c:ts')
                                _ -> unscan ts
unscan (Code s:ts) = s++unscan ts
unscan (Text s:ts) = '\"':s++'\"':unscan ts
unscan (Letter s:ts) = '\'':s++'\'':unscan ts
unscan (BigComment s:ts) = "{-"++s++"-}"++unscan ts
unscan (SmallComment s:ts) = "--"++s++unscan ts 
unscan (Meta s:ts) = "{+"++s++"+}"++unscan ts
unscan [] = ""
demand:
argument 1
deterministic:
deterministic operation
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({:}) |-> _ || ({[]}) |-> {[]}}
name:
unscan
precedence:
no precedence defined
result-values:
_
signature:
[Token] -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms