Method: Array#==

Defined in:
lib/jinx/import/java.rb

#==(other) ⇒ Object

Overrides the standard == to compare a Java List with a Ruby Array.



347
348
349
# File 'lib/jinx/import/java.rb', line 347

def ==(other)
  Java::JavaUtil::List === other ? other == self : equal__base(other)
end