CurryInfo: base-3.4.0 / Prelude.chr

definition: Info
 
chr :: Int -> Char
chr n | n < 0       = prim_chr 0
      | n > 1114111 = prim_chr 1114111
      | otherwise   = prim_chr $# n
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Converts a Unicode value into a character.
The conversion is total, i.e., for out-of-bound values, the smallest
or largest character is generated.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 chr
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Int -> Char
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term