Sha256: b6e3b740a06ebe6223626c82f88e42d6b35c58a075b2c275bcd298400b797d13
Contents?: true
Size: 885 Bytes
Versions: 1
Compression:
Stored size: 885 Bytes
Contents
#### Circular OpenStructs This example shows open structs that make a circular reference. ```show.rb```: ```ruby require 'ostruct' require 'debug_helper' ostruct_0 = OpenStruct.new ostruct_1 = OpenStruct.new ostruct_0.a = ostruct_1 ostruct_1.a = ostruct_0 DebugHelper.show(ostruct_0, 'My circular ostruct') ``` The output shows details of the open structs. The circular reference is not followed. ```show.yaml```: ```yaml --- OpenStruct (message='My circular ostruct'): Member 0: Name: Symbol: to_s: a size: 1 encoding: !ruby/encoding US-ASCII Value: OpenStruct: Member 0: Name: Symbol: to_s: a size: 1 encoding: !ruby/encoding US-ASCII Value: 'OpenStruct #<OpenStruct a=#<OpenStruct a=#<OpenStruct ...>>>' ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
debug_helper-1.8.0 | markdown/readme/classes/open_struct/circular/show.md |