definition:
|
getOneSolution :: Data a => (a -> Bool) -> IO (Maybe a)
#ifdef __KICS2__
getOneSolution c = do
sols <- getAllSolutions c
return (if null sols then Nothing else Just (head sols))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Gets one solution to a constraint (currently, via an incomplete
--- left-to-right strategy). Returns Nothing if the search space
--- is finitely failed.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
getOneSolution
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Data a => (a -> Prelude.Bool) -> Prelude.IO (Prelude.Maybe a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|