CurryInfo: verify-non-fail-2.0.0 / Verify.ProgInfo.isCompleteConstructorList

definition: Info
 
isCompleteConstructorList :: [(QName,ConsInfo)] -> [QName] -> Bool
isCompleteConstructorList _         []     = False
isCompleteConstructorList consinfos (c:cs)
  | null (fst c) = False -- literals are never complete
  | otherwise    = all (`elem` cs) (map fst (siblingsOfCons consinfos c))
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Is a non-empty list of constructors complete, i.e., does it contain
all the constructors of a type?
The first argument contains information about all constructors in a program.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> {False} || (_,{:}) |-> _}
name: Info
 isCompleteConstructorList
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 [((String, String), (Prelude.Int, ConsType, [((String, String), Prelude.Int)]))]
-> [(String, String)] -> Prelude.Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term