definition:
|
readHint :: [String] -> Bool
readHint []
= True
readHint (l:ls)
| isPrefixOf "hints" l && isSuffixOf "0" l = False
| otherwise = readHint ls
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- first line that starts with "hint" provides Bool if hints are on or off
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]}) |-> {True} || ({:}) |-> {False,True}}
|
name:
|
readHint
|
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
|