CurryInfo: base-3.3.0 / Data.Char.toUpper

definition:
toUpper         :: Char -> Char
toUpper c       |  isLower c = chr (ord c - ord 'a' + ord 'A')
                |  otherwise = c
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Converts lowercase into uppercase letters.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
toUpper
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Char -> Prelude.Char
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term