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