definition: |
o4Tuple :: (Data a, Data b, Data c, Data d) => Observer a -> Observer b -> Observer c -> Observer d -> Observer (a,b,c,d) o4Tuple observeA observeB observeC observeD (x1,x2,x3,x4) = o4 observeA observeB observeC observeD "(,,,)" (\a b c d -> (a,b,c,d)) x1 x2 x3 x4 |
demand: |
argument 9 |
deterministic: |
possibly non-deterministic operation |
documentation: |
-- An observer combinator for quadruples. |
failfree: |
<FAILING> |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_,_,_,_,_,_,_,{(,,,)}) |-> {o4}} |
name: |
o4Tuple |
precedence: |
no precedence defined |
result-values: |
{o4} |
signature: |
(Prelude.Data a, Prelude.Data b, Prelude.Data c, Prelude.Data d) => (a -> String -> Prelude.Int -> [Prelude.Int] -> a) -> (b -> String -> Prelude.Int -> [Prelude.Int] -> b) -> (c -> String -> Prelude.Int -> [Prelude.Int] -> c) -> (d -> String -> Prelude.Int -> [Prelude.Int] -> d) -> (a, b, c, d) -> String -> Prelude.Int -> [Prelude.Int] -> (a, b, c, d) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |