definition: |
isTupleName :: String -> Bool isTupleName [] = False isTupleName (n:name) = n == '(' && isTuple name where isTuple "" = False isTuple [c] = c == ')' isTuple (c:c':cs) = c==',' && isTuple (c':cs) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({[]}) |-> {False} || ({:}) |-> _} |
name: |
isTupleName |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.Bool |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |