Sha256: be9985b64b432c552a9b601cacf0408a1c6d99b4f0021a352db35257a4e6fc6d
Contents?: true
Size: 512 Bytes
Versions: 3
Compression:
Stored size: 512 Bytes
Contents
#### Nested Arrays This example shows nested arrays. ```show.rb```: ```ruby require 'debug_helper' ary = [0, [1, 2], [3, 4]] DebugHelper.show(ary, 'My nested arrays') ``` The output shows details of the arrays. ```show.yaml```: ```yaml --- Array (message='My nested arrays' size=3): Element 0: Fixnum 0 Element 1: Array (size=2): Element 0: Fixnum 1 Element 1: Fixnum 2 Element 2: Array (size=2): Element 0: Fixnum 3 Element 1: Fixnum 4 ```
Version data entries
3 entries across 3 versions & 1 rubygems