definition: |
getAllValues :: a -> IO [a] getAllValues e = return (allValues e) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Gets all values of an expression (currently, via an incomplete --- depth-first strategy). Conceptually, all values are 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 --- values contain unbound variables. --- Similar to Prolog's findall. |
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 |