CurryInfo: base-3.4.0 / Control.Search.SearchTree.printAllValuesWith

definition: Info
 
printAllValuesWith :: Show a => Strategy a -> a -> IO ()
printAllValuesWith strategy exp =
  getAllValuesWith strategy exp >>= mapM_ print
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Prints all values of an expression w.r.t. a search strategy.
A search strategy is an operation to traverse a search tree
and collect all values, e.g., 'dfsStrategy' or 'bfsStrategy'.
Conceptually, all printed values are computed on a copy of the expression,
i.e., the evaluation of the expression does not share any results.
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 printAllValuesWith
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Show a => (SearchTree a -> ValueSequence a) -> a -> Prelude.IO ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms