Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/array.rb

Instance Method Summary collapse

Instance Method Details

#uniq?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/array.rb', line 4

def uniq?
  self.length == self.uniq.length
end