Method: Struct#inspect
- Defined in:
- struct.c
#inspect ⇒ String Also known as: to_s
Returns a string representation of self:
Customer = Struct.new(:name, :address, :zip) # => Customer
joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
joe.inspect # => "#<struct Customer name=\"Joe Smith\", address=\"123 Maple, Anytown NC\", zip=12345>"
1007 1008 1009 1010 1011 |
# File 'struct.c', line 1007 static VALUE rb_struct_inspect(VALUE s) { return rb_exec_recursive(inspect_struct, s, rb_str_new2("#<struct ")); } |