1件ヒット
[1-1件を表示]
(0.759秒)
トップページ > :Hash#key > :2.3.0 > :strongly_connected_components > :KeyError > :stat > :each_strongly_connected_component_from > クラス:OpenStruct
ライブラリ
- ostruct (1)
検索結果
-
OpenStruct
# dig(key , . . . ) -> object | nil (343.0) -
self 以下のネストしたオブジェクトを dig メソッドで再帰的に参照して返し ます。途中のオブジェクトが nil であった場合は nil を返します。
...合は nil を返します。
@param key キーを任意個指定します。
require 'ostruct'
address = OpenStruct.new('city' => "Anytown NC", 'zip' => 12345)
person = OpenStruct.new('name' => 'John Smith', 'address' => address)
person.dig(:address, 'zip') # => 12345
person.di...