definition: |
someSolution :: Data a => (a -> Bool) -> a someSolution p = someValue (invertPred p) |
demand: |
no demanded arguments |
deterministic: |
possibly non-deterministic operation |
documentation: |
--- Returns some value satisfying a predicate, i.e., some argument such that --- the predicate applied to the argument can be evaluated to `True` --- (currently, via an incomplete depth-first strategy). --- If there is no value satisfying the predicate, the computation fails. --- --- Note that this operation is not purely declarative since the ordering --- of the computed values depends on the ordering of the program rules. --- Thus, this operation should be used only if the --- predicate has a single solution. |
failfree: |
<FAILING> |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
someSolution |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Data a => (a -> Prelude.Bool) -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |