definition: |
getAllValues :: a -> IO [a] getAllValues e = return (allValues e) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Gets all values of an expression (similarly to Prolog's `findall`). --- Conceptually, the value is computed on a copy of the expression, --- i.e., the evaluation of the expression does not share any results. --- In PAKCS, the evaluation suspends as long as the expression --- contains unbound variables or the computed --- value contains unbound variables. |
failfree: |
_ |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
getAllValues |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
a -> Prelude.IO [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |