Newer
Older
2018-fumichan-thesis / sinatra-practice / form-sample / vendor / bundle / ruby / 2.5.0 / gems / backports-3.11.4 / lib / backports / 2.4.0 / enumerable / uniq.rb
module Enumerable
  def uniq(&block)
    to_a.uniq(&block)
  end unless method_defined? :uniq
end