Sha256: 7036a347144f91fc0bd9489fa163a1f51a4238a9ef9d58c66938ca00a40b1322
Contents?: true
Size: 973 Bytes
Versions: 1
Compression:
Stored size: 973 Bytes
Contents
#### Circular Structs This example shows structs that make a circular reference. ```show.rb```: ```ruby require 'debug_helper' MyStruct = Struct.new(:a, :b, :c) struct_0 = MyStruct.new(0, 1, 2) struct_1 = MyStruct.new(3, 4, 5) struct_0.a = struct_1 struct_1.a = struct_0 DebugHelper.show(struct_0, 'My circular struct') ``` The output shows details of the structs. The circular reference is not followed. ```show.yaml```: ```yaml --- MyStruct (name='My circular struct' size=3): Member 0: Name: :a Value: MyStruct (size=3): Member 0: Name: :a Value: 'MyStruct #<struct MyStruct a=#<struct MyStruct a=#<struct MyStruct:...>, b=4, c=5>, b=1, c=2>' Member 1: Name: :b Value: Fixnum 4 Member 2: Name: :c Value: Fixnum 5 Member 1: Name: :b Value: Fixnum 1 Member 2: Name: :c Value: Fixnum 2 ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
debug_helper-1.0.0 | markdown/readme/classes/struct/circular/show.md |