Method: Hash#_get

Defined in:
lib/scale_rb/utils.rb

#_get(*keys) ⇒ Object | NilClass

Get the value from the hash

Parameters:

  • keys (Array<String | Symbol>)

    Keys to get the value from

Returns:

  • (Object | NilClass)

    Value if the key exists, nil otherwise



14
15
16
# File 'lib/scale_rb/utils.rb', line 14

def _get(*keys)
  ScaleRb::Utils.get(self, *keys)
end