CurryInfo: stylechecker-2.0.0 / Parse.Config.readCode

definition:
readCode :: [String] -> Bool
readCode []
  = True
readCode (l:ls)
  | isPrefixOf "code" l && isSuffixOf "0" l = False
  | otherwise                               = readCode ls
demand:
argument 1
deterministic:
deterministic operation
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({[]}) |-> {True} || ({:}) |-> {False,True}}
name:
readCode
precedence:
no precedence defined
result-values:
{False,True}
signature:
[String] -> Prelude.Bool
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term