CurryInfo: abstract-haskell-3.0.0 / AbstractHaskell.Goodies.tyVarsOf

definition: Info
 
tyVarsOf :: TypeExpr -> [TVarIName]
tyVarsOf (TVar             tv) = [tv]
tyVarsOf (FuncType      t1 t2) = tyVarsOf t1 `union` tyVarsOf t2
tyVarsOf (TCons         _ tys) = foldr union [] (map tyVarsOf tys)
tyVarsOf (ForallType tvs _ ty) = tyVarsOf ty \\ map fst tvs
demand: Info
 argument 1
deterministic: Info
 deterministic operation
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({TVar}) |-> {:} || ({FuncType}) |-> _ || ({TCons}) |-> _ || ({ForallType}) |-> _}
name: Info
 tyVarsOf
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 AbstractHaskell.Types.TypeExpr -> [(Prelude.Int, String)]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms