definition:
|
writeTransFunTwo :: String -> String -> [Attribute] -> CExpr
writeTransFunTwo mName name attrs =
CLambda [(CPComb (mName, name)
(if isPrimaryKeyAttribute (head attrs)
then cpvar "_" :
map (genAttrConvLeftOneTwo mName name) (tail attrs)
else map (genAttrConvLeftOneTwo mName name) attrs))]
(list2ac (map (genAttrConvRightOneTwo mName True) attrs))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Generates the second conversion function in the entity-description
-- where the entity key is not used but mapped to a null value.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {CLambda}}
|
name:
|
writeTransFunTwo
|
precedence:
|
no precedence defined
|
result-values:
|
{CLambda}
|
signature:
|
String -> String -> [Database.ERD.Attribute] -> AbstractCurry.Types.CExpr
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|