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


erlang constant_function(Set, AnySet)用法及代码示例


constant_function(Set, AnySet) -> Function
类型:
AnySet = anyset()
Function = a_function()
Set = a_set()

创建函数映射集合的每个元素SetAnySet.

1> S = sofs:set([a,b]),
E = sofs:from_term(1),
R = sofs:constant_function(S, E),
sofs:to_external(R).
[{a,1},{b,1}]

相关用法


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