definition: |
joinWith :: (a -> b -> c) -> Dist a -> Dist b -> Dist c joinWith f d1 d2 = do x <- d1 y <- d2 return (f x y) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Combines two (independent) distributions with respect to a given function. |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
joinWith |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(a -> b -> c) -> Dist a -> Dist b -> Dist c |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |