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