retract/1
[ISO]retract(
+Clause)
Removes the first occurrence of dynamic clause Clause from module M.
A valid Prolog clause.
retract/1
erases the first clause in the database that matches
Clause. Clause is retracted in module M if
specified. Otherwise, Clause is retracted in the source module.
retract/1
is nondeterminate.
If control backtracks into
the call to retract/1
, successive clauses matching Clause are
erased. If and when no clauses match, the call to retract/1
fails.
Clause must be of one of the forms:
:-
Body
:
Clause
where Head is of type callable and the principal functor of Head is the name of a dynamic procedure. If specified, Module must be an atom.
retract(
Head)
means retract the unit-clause Head. The exact
same effect can be achieved by retract((
Head :- true))
.
Body may be uninstantiated, in which case it will match any body. In
the case of a unit-clause it will be bound to true
. Thus, for
example,
| ?- retract((foo(X) :- Body)), fail.
is guaranteed to retract all the clauses for foo/1
, including any
unit-clauses, providing of course that foo/1
is dynamic.
Can be used to retract all matching clauses through backtracking.
instantiation_error
type_error
permission_error
retractall/1
, ref-mdb-rcd.