Class: Hash

Inherits:
Object show all
Defined in:
lib/tkxxs/tkxxs_classes.rb

Direct Known Subclasses

Conf

Instance Method Summary collapse

Instance Method Details

#dup2!Object

Somewhat deeper dup



12
13
14
15
16
17
# File 'lib/tkxxs/tkxxs_classes.rb', line 12

def dup2!(  )
  self.each_pair {|k,v|
    self[k] = v.dup if v.class == String
  }
  self
end