definition: |
findFirstDeclLine :: Eq a => [a] -> [[a]] -> Int -> Int findFirstDeclLine _ [] _ = 0 -- not found findFirstDeclLine f (l:ls) n = if isPrefixOf f l then n else findFirstDeclLine f ls (n+1) |
demand: |
argument 3 |
deterministic: |
deterministic operation |
documentation: |
-- finds first declaration line: |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,{[]},_) |-> {0} || (_,_,{:},_) |-> _} |
name: |
findFirstDeclLine |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Eq a => [a] -> [[a]] -> Prelude.Int -> Prelude.Int |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |