CurryInfo: base-3.3.0 / Data.Char.isHexDigit

definition:
isHexDigit :: Char -> Bool
isHexDigit c = isDigit c || c >= 'A' && c <= 'F'
                         || c >= 'a' && c <= 'f'
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Returns true if the argument is a hexadecimal digit.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
isHexDigit
precedence:
no precedence defined
result-values:
_
signature:
Char -> Bool
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term