Required Files
Methods
merge! replace update values_at
Public Instance methods
merge!(other)
# File lib/more/facets/stash.rb, line 53
  def merge!(other)
    super(other.rekey(&:to_s))
  end
replace()
# File lib/more/facets/stash.rb, line 57
  def replace
    super(other.rekey(&:to_s))
  end
update(other)
# File lib/more/facets/stash.rb, line 49
  def update(other)
    super(other.rekey(&:to_s))
  end
values_at(*keys)
# File lib/more/facets/stash.rb, line 61
  def values_at(*keys)
    super(keys.map{|k|k.to_s})
  end