module Dry::Core::Cache::Methods
Instance methods
Public Instance Methods
fetch_or_store(*args, &block)
click to toggle source
Delegates call to the class-level method
@param [Array<Object>] args List of hashable objects @yield An arbitrary block
@return [Object] block's return value
# File lib/dry/core/cache.rb, line 63 def fetch_or_store(*args, &block) self.class.fetch_or_store(*args, &block) end