Sha256: 8bf34fde654f4d5b61a6e0c1ad9ead4d04a0371aa1ed4425db6b8513bce1eee0
Contents?: true
Size: 621 Bytes
Versions: 1
Compression:
Stored size: 621 Bytes
Contents
#### Mixed Struct This example shows a struct of mixed values. ```show.rb```: ```ruby require 'debug_helper' MyStruct = Struct.new(:a, :b, :c) struct = MyStruct.new(0, 'one', :two) DebugHelper.show(struct, 'My mixed struct') ``` The output shows details of the struct. ```show.yaml```: ```yaml --- MyStruct (name='My mixed struct' size=3): Member 0: Name: :a Value: Fixnum 0 Member 1: Name: :b Value: String (size=3 encoding=UTF-8 ascii_only=true bytesize=3): - one Member 2: Name: :c Value: 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/struct/mixed/show.md |