class LX::Hash

A helper class to add methods to the Hash class. When you use the Hash::lx you're creating an instance of LX::Hash.

Public Class Methods

new(p_hsh) click to toggle source

initialize a LX::Array object. The only param is the array itself.

# File lib/lx.rb, line 275
def initialize(p_hsh)
        @hsh = p_hsh
end

Public Instance Methods

deep_dup() click to toggle source

deep_dup

# File lib/lx.rb, line 280
def deep_dup
        return LX.deep_dup(@hsh)
end