definition: |
w6Tuple :: (Data a, Data b, Data c, Data d, Data e, Data f) => WuiSpec a -> WuiSpec b -> WuiSpec c -> WuiSpec d -> WuiSpec e -> WuiSpec f -> WuiSpec (a,b,c,d,e,f) --w6Tuple = wCons6 (\a b c d e f -> (a,b,c,d,e,f)) w6Tuple wa wb wc wd we wf = transformWSpec (\ ((a,b,c),(d,e,f)) -> (a,b,c,d,e,f), \ (a,b,c,d,e,f) -> ((a,b,c),(d,e,f))) (wJoinTuple (wTriple wa wb wc) (wTriple wd we wf)) |
demand: |
arguments 7 8 9 10 11 12 |
deterministic: |
deterministic operation |
documentation: |
--- WUI combinator for tuples of arity 6. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_,_,_,_,_,_,_,_,_,_) |-> {WuiSpec}} |
name: |
w6Tuple |
precedence: |
no precedence defined |
result-values: |
{WuiSpec} |
signature: |
(Prelude.Data a, Prelude.Data b, Prelude.Data c, Prelude.Data d, Prelude.Data e, Prelude.Data f) => WuiSpec a -> WuiSpec b -> WuiSpec c -> WuiSpec d -> WuiSpec e -> WuiSpec f -> WuiSpec (a, b, c, d, e, f) |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |