SDBM
# File lib/moneta/sdbm.rb, line 7 def [](key) if val = super Marshal.load(val) end end
# File lib/moneta/sdbm.rb, line 13 def []=(key, value) super(key, Marshal.dump(value)) end
# File lib/moneta/sdbm.rb, line 17 def delete(key) if val = super Marshal.load(val) end end
[Validate]
Generated with the Darkfish Rdoc Generator 2.