definition: |
observeG :: Observer a -> String -> a -> a observeG observeA label x = initialObserverG observeA 0 x label (-1) preds where preds free |
demand: |
no demanded arguments |
deterministic: |
possibly non-deterministic operation |
documentation: |
--- The basic operation to observe the evaluation of ground data structures. --- It does not require a `Data` context but it can not observe --- the instantiation of free variables occurring in data structures. --- Thus, it has to be ensured that free variables do not occur in the --- observed structures, otherwise this observer always suspends. |
failfree: |
<FAILING> |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
observeG |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(a -> String -> Prelude.Int -> [Prelude.Int] -> a) -> String -> a -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |