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


erlang partition(SetOfSets)用法及代碼示例


partition(SetOfSets) -> Partition
類型:
SetOfSets = set_of_sets()
Partition = a_set()

返回分割集合的並集SetOfSets這樣,如果兩個元素屬於相同的元素,則認為它們相等SetOfSets.

1> Sets1 = sofs:from_term([[a,b,c],[d,e,f],[g,h,i]]),
Sets2 = sofs:from_term([[b,c,d],[e,f,g],[h,i,j]]),
P = sofs:partition(sofs:union(Sets1, Sets2)),
sofs:to_external(P).
[[a],[b,c],[d],[e,f],[g],[h,i],[j]]

相關用法


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