class BSON::Int64

def ==(other)

Other tags:
    Since: - 4.4.0

Returns:
  • (true, false) - If the objects are equal.

Parameters:
  • other (Object) -- The object to check against.
def ==(other)
  return false unless other.is_a?(Int64)
  value == other.value
end