module Dynany(T)
Direct including types
Defined in:
dynany.crInstance Method Summary
-
#[]=(key : Int, value : T::Any)
Sets the value of key to the given value.
-
#[]=(path : Enumerable, value : T::Any) : T::Any
Sets the value of key to the given value.
-
#delete(index : Int) : T::Any | Nil
Deletes the element at the given index.
-
#delete(key : String) : T::Any | Nil
Deletes the key-value pair.
-
#delete(path : Enumerable) : T::Any
Removes the element corresponding to the path.