definition:
|
oList :: Data a => Observer a -> Observer [a]
oList _ [] = o0 "[]" []
oList observeA (x:xs) = o2 observeA (oList observeA) "(:)" (:) x xs
|
demand:
|
argument 3
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
-- An observer combinator for lists.
|
failfree:
|
<FAILING>
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{[]}) |-> {o0} || (_,_,{:}) |-> {o2}}
|
name:
|
oList
|
precedence:
|
no precedence defined
|
result-values:
|
{o0,o2}
|
signature:
|
Prelude.Data a => (a -> String -> Prelude.Int -> [Prelude.Int] -> a) -> [a]
-> String -> Prelude.Int -> [Prelude.Int] -> [a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|