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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。