CurryInfo: base-3.4.0 / Control.Search.AllValues.getAllFailures

definition: Info
 
getAllFailures :: a           -- ^ an expression ´e´ (e.g., a generator
                              --   evaluable to various values)
               -> (a -> Bool) -- ^ a constraint ´c´ that should not be satisfied
               -> IO [a]      -- ^ list of all values of `e`
                              --   such that `(c e)` is not provable
getAllFailures generator test = do
  xs <- getAllValues generator
  failures <- mapM (naf test) xs
  return $ concat failures
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
failfree: Info
 (_, _)
indeterministic: Info
 might be indeterministic
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 getAllFailures
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 a -> (a -> Prelude.Bool) -> Prelude.IO [a]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term