module Roma::Storage::RH_Ext

Public Instance Methods

get(k) click to toggle source
# File lib/roma/storage/ruby_hash_storage.rb, line 8
def get(k); self[k]; end
out(k) click to toggle source
# File lib/roma/storage/ruby_hash_storage.rb, line 9
def out(k); delete(k); end
put(k,v) click to toggle source
# File lib/roma/storage/ruby_hash_storage.rb, line 7
def put(k,v); self[k] = v; end
rnum() click to toggle source
# File lib/roma/storage/ruby_hash_storage.rb, line 10
def rnum; length; end
sync() click to toggle source
# File lib/roma/storage/ruby_hash_storage.rb, line 11
def sync; true; end