当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


erlang drestriction(SetFun, Set1, Set2)用法及代码示例


drestriction(SetFun, Set1, Set2) -> Set3
类型:
SetFun = set_fun()
Set1 = Set2 = Set3 = a_set()

返回 Set1 的子集,其中包含未在 Set2 中给出元素作为应用 SetFun 的结果的元素。

1> SetFun = {external, fun({_A,B,C}) -> {B,C} end},
R1 = sofs:relation([{a,aa,1},{b,bb,2},{c,cc,3}]),
R2 = sofs:relation([{bb,2},{cc,3},{dd,4}]),
R3 = sofs:drestriction(SetFun, R1, R2),
sofs:to_external(R3).
[{a,aa,1}]

drestriction(F, S1, S2) 相当于 difference(S1, restriction(F, S1, S2))

相关用法


注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 drestriction(SetFun, Set1, Set2) -> Set3。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。