definition:
|
fieldDecl :: Parser FieldDecl
fieldDecl =
FieldDecl <$>
(map Ident <$> identList) <*!*>
(tokenTyping *!*> typeExpr)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- A parser for a Field Declaration | IdentList :: TypeExpr
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {<*>._#lambda10}}
|
name:
|
fieldDecl
|
precedence:
|
no precedence defined
|
result-values:
|
{<*>._#lambda10}
|
signature:
|
String -> [(CurryInterface.Types.FieldDecl, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|