definition: |
genColumn :: String -> String -> Attribute -> CFuncDecl genColumn mName name a@(Attribute atr _ _ _) = stCmtFunc ("The database column `" ++ atr ++ "` of the `" ++ name ++ "` entity.") (mName, firstLow name ++ "Column" ++ atr) 0 Public (applyTC (mDescr, "Column") [(getAttributeType mName name a)]) [(simpleRule [] (applyE (CSymbol (mDescr, "Column")) [(string2ac ("\"" ++ atr ++ "\"")), (string2ac ("\"" ++ name ++ "\"." ++ "\"" ++ atr ++ "\"")) ]))] |
demand: |
argument 3 |
deterministic: |
deterministic operation |
documentation: |
-- Generates a column-function from an attribute. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,{Attribute}) |-> _} |
name: |
genColumn |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> String -> Database.ERD.Attribute -> AbstractCurry.Types.CFuncDecl |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |