definition:
|
readLength :: [String] -> Int -> Int
readLength [] len
= len
readLength (l:ls) len
| isPrefixOf "maxLineLength" l = read $ last $ words l
| otherwise = readLength ls len
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--first line that starts with maxLineLength provides the length for lengthcheck
--if no option found, use default 80 charakters
--TODO: if no int at the end
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]},_) |-> _ || ({:},_) |-> _}
|
name:
|
readLength
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[String] -> Prelude.Int -> Prelude.Int
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|