definition: |
(|>>=) :: Transaction a -> (a -> Transaction b) -> Transaction b Trans action |>>= f = Trans $ do result <- action case result of Error err -> return $ Error err OK res -> unTrans $ f res |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Combines two transactions into a single transaction that executes --- both in sequence. The first transaction is executed, its result --- passed to the function which computes the second transaction, --- which is then executed to compute the final result. --- --- If the first transaction is aborted with an error, the second --- transaction is not executed. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
infixl |
iotype: |
{({Trans},_) |-> _} |
name: |
|>>= |
precedence: |
1 |
result-values: |
_ |
signature: |
Transaction a -> (a -> Transaction b) -> Transaction b |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |