definition:
|
updNewCons :: (QName -> QName) ->
(Visibility -> Visibility) ->
(TypeExpr -> TypeExpr) -> NewConsDecl -> NewConsDecl
updNewCons fn fv fas = trNewCons newcons
where
newcons name vis args = NewCons (fn name) (fv vis) (fas args)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- update newtype constructor declaration
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {trNewCons}}
|
name:
|
updNewCons
|
precedence:
|
no precedence defined
|
result-values:
|
{trNewCons}
|
signature:
|
((String, String) -> (String, String)) -> (FlatCurry.Types.Visibility
-> FlatCurry.Types.Visibility) -> (FlatCurry.Types.TypeExpr
-> FlatCurry.Types.TypeExpr) -> FlatCurry.Types.NewConsDecl
-> FlatCurry.Types.NewConsDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|