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


Elixir Keyword.put_new_lazy用法及代码示例


Elixir语言中 Keyword.put_new_lazy 相关用法介绍如下。

用法:

put_new_lazy(keywords, key, fun)
@spec put_new_lazy(t(), key(), (() -> value())) :: t()

评估 fun 并将结果放在关键字列表中的 key 下,除非 key 已经存在。

如果该值计算起来非常昂贵或通常难以再次设置和拆除,这将很有用。

例子

iex> keyword = [a: 1]
iex> fun = fn ->
...>   # some expensive operation here
...>   13
...> end
iex> Keyword.put_new_lazy(keyword, :a, fun)
[a: 1]
iex> Keyword.put_new_lazy(keyword, :b, fun)
[b: 13, a: 1]

相关用法


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