CurryInfo: det-parse-3.0.0 / DetParse.anyChar

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