definition:
|
deleteDBEntries :: KeyPred _ -> [Key] -> Transaction ()
deleteDBEntries keyPred keys =
modify keyPred "delete from" $
"where _rowid_ in (" ++ commaSep (map show keys) ++ ")"
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Deletes the information stored under the given keys. No error is
--- raised if (some of) the keys do not exist.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
deleteDBEntries
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(Prelude.Int -> a -> Dynamic) -> [Prelude.Int] -> Transaction ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|