class Array

Public Instance Methods

uniq?() click to toggle source
# File lib/array.rb, line 4
def uniq?
  self.length == self.uniq.length
end