definition: |
(|>>) :: Transaction _ -> Transaction a -> Transaction a t1 |>> t2 = t1 |>>= const t2 |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Combines two transactions to execute them in sequence. The result of --- the first transaction is ignored. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
infixl |
iotype: |
{(_,_) |-> _} |
name: |
|>> |
precedence: |
1 |
result-values: |
_ |
signature: |
Transaction 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 |