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


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