struct

CON::Any

Inherits Dynany < Struct < Value < Object

Instance methods

[](path : Enumerable) : T::Any

Returns the value corresponding to the path. If not found, raise.

Source
[]=(key : String, value : Any) : T::Any

Sets the value of key to the given value.

Source
[]?(path : Enumerable) : T::Any | Nil

Returns the value corresponding to the path. If not found, returns nil.

Source