definition: |
ppComb :: Options -> Int -> QName -> [Expr] -> Doc ppComb o p qn es | isListId qn && null es = text "[]" | isTupleId qn = tupled (map (ppExp o) es) | otherwise = case es of [] -> ppPrefixQOp o qn [e1,e2] | isInfixOp qn -> parensIf (p > 0) $ fillSep [ppExpr o 1 e1, ppInfixQOp o qn, ppExpr o 1 e2] _ -> parensIf (p > 0) $ fillSep (ppPrefixQOp o qn : map (ppExpr o 1) es) |
demand: |
argument 3 |
deterministic: |
deterministic operation |
documentation: |
--- Pretty print a constructor or function call |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_,_) |-> _ || (_,_,_,{[]}) |-> _ || (_,_,_,{:}) |-> _} |
name: |
ppComb |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Options -> Prelude.Int -> (String, String) -> [FlatCurry.Types.Expr] -> Text.PrettyImpl.Doc |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |