In Ruby, is there the equivalent of the __str__() method that you can define on Python classes?
|
|
|
|
|
|
|
You could use to_s. |
||
|
|
|
On the core classes it is typically 'inspect'. Eg:
|
||
|
|
|
|
FWIW, inspect is probably more like from the library reference... repr( self)
|
||
|
|
