Sha256: 8947e7eb76f49017a7b1479b9c9c0ffff456d8ef3c18f38ec117a3a4f12fb24d

Contents?: true

Size: 480 Bytes

Versions: 1

Compression:

Stored size: 480 Bytes

Contents

#### Mixed Array

This example shows an array of mixed values.

```show.rb```:
```ruby
require 'debug_helper'

ary = [0, 'one', :two]
DebugHelper.show(ary, 'My mixed array')
```

The output shows details of the array.

```show.yaml```:
```yaml
---
Array (name='My mixed array' size=3):
  Element 0: Fixnum 0
  Element 1:
    String (size=3 encoding=UTF-8 ascii_only=true bytesize=3):
    - one
  Element 2:
    Symbol (size=3 encoding=US-ASCII): :two
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
debug_helper-1.0.0 markdown/readme/classes/array/mixed/show.md