I can't come up with a situation where I would need it.
|
feedback
|
|
Elegant systems provide false/0 as a declarative synonym for the imperative "fail/0". An example where it is useful is when you manually want to force backtracking for side-effects, like:
Instead of false/0, you can also use any goal that fails, for example a bit shorter:
Thus, false/0 is not strictly needed but quite nice. | |||
|
feedback
|
|
One case (taken from Constraint Logic Programming using Eclipse) is an implementation of not/1:
If Q succeeds, the cut (!) causes the second not clause to be discarded, and the fail ensures a negative result. If Q fails, then the second not clause fires first. | |||
|
feedback
|
|
Another use for fail is to force backtracking through alternatives when using predicates with side effects:
Some people might not consider this particularly good programming style though. :) | |||
|
feedback
|