當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang restriction(SetFun, Set1, Set2)用法及代碼示例


restriction(SetFun, Set1, Set2) -> Set3
類型:
SetFun = set_fun()
Set1 = Set2 = Set3 = a_set()

返回 Set1 的子集,其中包含那些在 Set2 中給出元素作為應用 SetFun 的結果的元素。

1> S1 = sofs:relation([{1,a},{2,b},{3,c}]),
S2 = sofs:set([b,c,d]),
S3 = sofs:restriction(2, S1, S2),
sofs:to_external(S3).
[{2,b},{3,c}]

相關用法


注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 restriction(SetFun, Set1, Set2) -> Set3。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。