Sha256: 653aac3a487d0c1f1a3365c24103c1301e6a6dfd22ea451a009f01b9875a5428
Contents?: true
Size: 487 Bytes
Versions: 1
Compression:
Stored size: 487 Bytes
Contents
#### Circular Arrays This example shows arrays that make a circular reference. ```show.rb```: ```ruby require 'debug_helper' ary_0 = [] ary_1 = [] ary_0.push(ary_1) ary_1.push(ary_0) DebugHelper.show(ary_0, 'My circular arrays') ``` The output shows details of the arrays. The circular reference is not followed. ```show.yaml```: ```yaml --- Array (name='My circular arrays' size=1): Element 0: Array (size=1): Element 0: Array [[[...]]] ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
debug_helper-1.0.0 | markdown/readme/classes/array/circular/show.md |