CurryInfo: keydb-3.1.0 / Database.KeyDatabaseSQLite.runJustT

definition:
runJustT :: Transaction a -> IO a
runJustT t =
  runT t  >>=
  return . either id
              (\e -> error ("Transaction failed: " ++ showTError e))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Executes a possibly composed transaction on the current state
--- of dynamic predicates as a single transaction.
--- Similar to <code>runT</code> but a run-time error is raised
--- if the execution of the transaction fails.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
runJustT
precedence:
no precedence defined
result-values:
_
signature:
Transaction a -> Prelude.IO a
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms