Module: Mongoid::Equality
Overview
This module contains the behavior of Mongoid’s clone/dup of documents.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#<=>(other) ⇒ Integer
Default comparison is via the string version of the id.
-
#==(other) ⇒ true | false
Performs equality checking on the document ids.
-
#eql?(other) ⇒ true | false
Delegates to ==.
Instance Method Details
#<=>(other) ⇒ Integer
Default comparison is via the string version of the id.
20 21 22 |
# File 'lib/mongoid/equality.rb', line 20 def <=>(other) attributes["_id"].to_s <=> other.attributes["_id"].to_s end |
#==(other) ⇒ true | false
Performs equality checking on the document ids. For more robust equality checking please override this method.
33 34 35 36 |
# File 'lib/mongoid/equality.rb', line 33 def ==(other) self.class == other.class && attributes["_id"] == other.attributes["_id"] end |
#eql?(other) ⇒ true | false
Delegates to ==. Used when needing checks in hashes.
46 47 48 |
# File 'lib/mongoid/equality.rb', line 46 def eql?(other) self == (other) end |