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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。