stash.rb

Path: lib/more/facets/stash.rb
Last Update: Mon Mar 16 08:45:52 -0400 2009

Required files

facets/hash/rekey  

Methods

merge!   replace   update   values_at  

Public Instance methods

[Source]

# File lib/more/facets/stash.rb, line 53
  def merge!(other)
    super(other.rekey(&:to_s))
  end

[Source]

# File lib/more/facets/stash.rb, line 57
  def replace
    super(other.rekey(&:to_s))
  end

[Source]

# File lib/more/facets/stash.rb, line 49
  def update(other)
    super(other.rekey(&:to_s))
  end

[Source]

# File lib/more/facets/stash.rb, line 61
  def values_at(*keys)
    super(keys.map{|k|k.to_s})
  end

[Validate]