class BSON::Symbol::Raw

def ==(other)

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

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