Module Virtus::Equalizer::Methods
In: lib/virtus/support/equalizer.rb

The comparison methods

Methods

==   eql?  

Public Instance methods

Compare the object with other object for equivalency

@example

  object == other  # => true or false

@param [Object] other

  the other object to compare with

@return [Boolean]

@api public

Compare the object with other object for equality

@example

  object.eql?(other)  # => true or false

@param [Object] other

  the other object to compare with

@return [Boolean]

@api public

[Validate]