definition:
|
getCorEnt :: [Entity] -> String -> String -> String
getCorEnt [] _ _ = "" -- this should not happen
getCorEnt ((Entity name attrs):ents) eName rName =
if name == rName
then checkAttributes attrs eName
else getCorEnt ents eName rName
where checkAttributes ((Attribute _ typ _ _):atts) n = case typ of
KeyDom kName -> if kName == n then checkAttributes atts n
else kName
_ -> checkAttributes atts n
checkAttributes [] _ = "" --should not happen
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- find second entity belonging to an MtoN relationship
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]},_,_) |-> {[]} || ({:},_,_) |-> _}
|
name:
|
getCorEnt
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[Database.ERD.Entity] -> String -> String -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|