CurryInfo: curry-interface-2.0.1 / CurryInterface.Pretty.ppKindExpr

definition:
ppKindExpr :: Options -> Int -> KindExpr -> Doc
ppKindExpr opts p (ArrowKind k1 k2) =
  parensIf (p >= 1) (ppKindExpr opts 1 k1 <+> rarrow <+> ppKindExpr opts 0 k2)
ppKindExpr _    _ Star           = text "*"
ppKindExpr _    _ ConstraintKind = text "Constraint"
demand:
argument 3
deterministic:
deterministic operation
documentation:
--- pretty-print a kind expression
failfree:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,{ArrowKind}) |-> _ || (_,_,{Star}) |-> {Doc} || (_,_,{ConstraintKind}) |-> {Doc}}
name:
ppKindExpr
precedence:
no precedence defined
result-values:
_
signature:
Options -> Prelude.Int -> CurryInterface.Types.KindExpr -> Text.PrettyImpl.Doc
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term