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


Elixir Enum.dedup用法及代碼示例


Elixir語言中 Enum.dedup 相關用法介紹如下。

用法:

dedup(enumerable)
@spec dedup(t()) :: list()

枚舉 enumerable ,返回一個列表,其中所有連續重複的元素都折疊為單個元素。

使用 ===/2 比較元素。

如果要刪除所有重複的元素,無論順序如何,請參閱 uniq/1

例子

iex> Enum.dedup([1, 2, 3, 3, 2, 1])
[1, 2, 3, 2, 1]

iex> Enum.dedup([1, 1, 2, 2.0, :three, :three])
[1, 2, 2.0, :three]

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Enum.dedup(enumerable)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。