definition: |
combinator :: Int -> QName combinator n | n==0 = error "GenerationHelper.combinator: empty attribute list" | n==1 = error "GenerationHelper.combinator: no combinator for list of length 1" | n>14 = error "GenerationHelper.combinator: attribute list too long" | n==2 = (wuiModule "wPair") | n==3 = (wuiModule "wTriple") | otherwise = (wuiModule $ "w" ++ show n ++ "Tuple") |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
combinator |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Int -> (String, String) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |