definition: |
(***) :: (a -> b) -> (c -> d) -> (a, c) -> (b, d) f *** g = \ (x, y) -> (f x, g y) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Apply two functions to the two components of a tuple. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {***._#lambda1}} |
name: |
*** |
precedence: |
no precedence defined |
result-values: |
{***._#lambda1} |
signature: |
(a -> b) -> (c -> d) -> (a, c) -> (b, d) |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |