class Hamster::Hash

def store(key, value)

Returns:
  • (Hash) -

Parameters:
  • value (Object) -- The value to associate it with
  • key (Object) -- The key to store

Other tags:
    See: #put -
def store(key, value)
  put(key, value)
end