definition:
|
ppPattern :: Options -> Pattern -> Doc
ppPattern o (Pattern c vs)
| isListId c && null vs = text "[]"
| isTupleId c = tupled (map ppVarIndex vs)
| otherwise = case vs of
[v1,v2] | isInfixOp c -> ppVarIndex v1 <+> ppInfixQOp o c <+> ppVarIndex v2
_ -> hsep (ppPrefixQOp o c : map ppVarIndex vs)
ppPattern _ (LPattern l) = ppLiteral l
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty print a pattern
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Pattern}) |-> _ || (_,{LPattern}) |-> {Doc}}
|
name:
|
ppPattern
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> FlatCurry.Types.Pattern -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|