to_h -> Hash
[permalink][rdoc][edit]-
self のメンバ名(Symbol)と値の組を Hash にして返します。
Customer = Struct.new(:name, :address, :zip) Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345).to_h # => {:name=>"Joe Smith", :address=>"123 Maple, Anytown NC", :zip=>12345}
[注意] 本メソッドの記述は Struct の下位クラスのインスタンスに対して呼び出す事を想定しています。Struct.new は Struct の下位クラスを作成する点に注意してください。