Sha256: 691456432845712294c187a6a56b1389530c41ffa3a36efba2399e4f0fdd1ef7
Contents?: true
Size: 976 Bytes
Versions: 3
Compression:
Stored size: 976 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 (message='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
3 entries across 3 versions & 1 rubygems