Elixir語言中 Keyword.filter
相關用法介紹如下。
用法:
filter(keywords, fun)
(從 1.13.0 開始)
@spec filter(t(), ({key(), value()} -> as_boolean(term()))) :: t()
返回一個關鍵字列表,其中僅包含 keywords
中函數 fun
為其返回真值的條目。
另請參閱
,它會丟棄函數返回真實值的所有條目。reject/2
例子
iex> Keyword.filter([one: 1, two: 2, three: 3], fn {_key, val} -> rem(val, 2) == 1 end)
[one: 1, three: 3]
相關用法
- Elixir Keyword.fetch用法及代碼示例
- Elixir Keyword.fetch!用法及代碼示例
- Elixir Keyword.get用法及代碼示例
- Elixir Keyword.validate用法及代碼示例
- Elixir Keyword.get_and_update用法及代碼示例
- Elixir Keyword.get_and_update!用法及代碼示例
- Elixir Keyword.pop_first用法及代碼示例
- Elixir Keyword.get_values用法及代碼示例
- Elixir Keyword.replace用法及代碼示例
- Elixir Keyword.split用法及代碼示例
- Elixir Keyword.put_new用法及代碼示例
- Elixir Keyword.pop_values用法及代碼示例
- Elixir Keyword.drop用法及代碼示例
- Elixir Keyword.keyword?用法及代碼示例
- Elixir Keyword.pop_lazy用法及代碼示例
- Elixir Keyword.to_list用法及代碼示例
- Elixir Keyword.merge用法及代碼示例
- Elixir Keyword.put用法及代碼示例
- Elixir Keyword.get_lazy用法及代碼示例
- Elixir Keyword.values用法及代碼示例
- Elixir Keyword.has_key?用法及代碼示例
- Elixir Keyword.replace!用法及代碼示例
- Elixir Keyword.delete用法及代碼示例
- Elixir Keyword.take用法及代碼示例
- Elixir Keyword.delete_first用法及代碼示例
注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Keyword.filter(keywords, fun)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。