CurryInfo: det-parse-3.0.0 / DetParse.anyChar

definition:
anyChar :: Parser Char
anyChar = \s -> case s of
                  []      -> []
                  (c:cs)  -> [(c,cs)]
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- A parser that consumes an arbitrary single character.
failfree:
()
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{() |-> {anyChar._#lambda4}}
name:
anyChar
precedence:
no precedence defined
result-values:
{anyChar._#lambda4}
signature:
String -> [(Prelude.Char, String)]
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms