Object
@private
# File lib/rspec/core/memoized_helpers.rb, line 165 def initialize @memoized = {} end
# File lib/rspec/core/memoized_helpers.rb, line 169 def fetch_or_store(key) @memoized.fetch(key) { @memoized[key] = yield } end