johncarney (John Carney)
- Login: johncarney
- Registered on: 12/12/2016
- Last sign in: 11/09/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
12/12/2016
-
06:03 AM Ruby Feature #13025 (Feedback): String equality operator does not perform implicit conversion
- According to the documentation, String#== should perform implicit conversion of non-strings, but this is not happening.
~~~ruby
class SomeClass
def initialize(value)
@value = value
end
def to_str
@value.to_s
e...