definition:
|
combineWithR :: FCT.QName -> [CExpr] -> CExpr
combineWithR op = foldr1 (\x y -> applyF op [x,y])
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Combines all given expressions with a given operator (right-associative)
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {foldr1}}
|
name:
|
combineWithR
|
precedence:
|
no precedence defined
|
result-values:
|
{foldr1}
|
signature:
|
(String, String) -> [AbstractCurry.Types.CExpr] -> AbstractCurry.Types.CExpr
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|