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


Ruby Enumerable.uniq用法及代碼示例


本文簡要介紹ruby語言中 Enumerable.uniq 的用法。

用法

uniq → array
uniq {|element| ... } → array

沒有塊,返回一個隻包含唯一元素的新數組;該數組沒有兩個元素 e0e1 使得 e0.eql?(e1)

%w[a b c c b a a b c].uniq       # => ["a", "b", "c"]
[0, 1, 2, 2, 1, 0, 0, 1, 2].uniq # => [0, 1, 2]

使用塊,返回一個新數組,該數組僅包含該塊為其返回唯一值的數組:

a = [0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1]
a.uniq {|i| i.even? ? i : 0 } # => [0, 2, 4]
a = %w[a b c d e e d c b a a b c d e]
a.uniq {|c| c < 'c' }         # => ["a", "c"]

相關用法


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