definition: |
(>+) :: DBAction a -> DBAction b -> DBAction b (>+) x y = x >+= (\_ -> y) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Connects two `DBAction`s but ignore the result of the first. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
infixl |
iotype: |
{(_,_) |-> _} |
name: |
>+ |
precedence: |
1 |
result-values: |
_ |
signature: |
DBAction a -> DBAction b -> DBAction b |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |