Project

General

Profile

Actions

Feature #13025

closed

String equality operator does not perform implicit conversion

Added by johncarney (John Carney) over 7 years ago. Updated over 7 years ago.

Status:
Feedback
Assignee:
-
Target version:
-
[ruby-core:78594]

Description

According to the documentation, String#== should perform implicit conversion of non-strings, but this is not happening.

class SomeClass
  def initialize(value)
    @value = value
  end

  def to_str
    @value.to_s
  end
end

"text" == SomeClass.new("text")
# => false (expected true)

Other operators work as expected:

"text" + SomeClass.new("text")
# => "texttext"

"text" <=> SomeClass.new("text")
# => 0
Actions

Also available in: Atom PDF

Like0
Like0