Method: OFlow::Box#to_s
- Defined in:
- lib/oflow/box.rb
#to_s ⇒ Object Also known as: inspect
Returns a string representation of the Box and contents.
76 77 78 79 80 81 82 |
# File 'lib/oflow/box.rb', line 76 def to_s() if @tracker.nil? "Box{#{@contents}}" else "Box{#{@contents}, tracker: #{@tracker}}" end end |