# File lib/moneta/stack.rb, line 78 def delete(key, options = {}) @stack.inject(nil) do |value, s| v = s.delete(key, options) value || v end end