definition: |
o3 :: (Data a, Data b, Data c) => Observer a -> Observer b -> Observer c -> String -> (a -> b -> c -> d) -> a -> b -> c -> Label -> EventID -> [EventID] -> d o3 observeA observeB observeC constrStr constr x1 x2 x3 label parent preds = unsafePerformIO $ do (eventID,newPreds) <- recordEvent label (Value 3 constrStr) parent preds return (constr (observer observeA 1 x1 label eventID newPreds) (observer observeB 2 x2 label eventID newPreds) (observer observeC 3 x3 label eventID newPreds)) |
demand: |
no demanded arguments |
deterministic: |
possibly non-deterministic operation |
documentation: |
-- An observer combinator for ternary constructors. |
failfree: |
<FAILING> |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_,_,_,_,_,_,_,_,_,_,_,_,_) |-> _} |
name: |
o3 |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(Prelude.Data a, Prelude.Data b, Prelude.Data c) => (a -> String -> Prelude.Int -> [Prelude.Int] -> a) -> (b -> String -> Prelude.Int -> [Prelude.Int] -> b) -> (c -> String -> Prelude.Int -> [Prelude.Int] -> c) -> String -> (a -> b -> c -> d) -> a -> b -> c -> String -> Prelude.Int -> [Prelude.Int] -> d |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |