definition:
|
ppQuantifiedVars :: [(TVarIndex, Kind)] -> Doc
ppQuantifiedVars vs
| null vs = empty
| otherwise = text "forall" <+> hsep (map (ppTVarIndex . fst) vs) <+> char '.'
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print explicitly quantified type variables
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
ppQuantifiedVars
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[(Prelude.Int, FlatCurry.Types.Kind)] -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|