module ActiveSupport::Cache::MemoryStore::DupCoder

def load(entry)

Experimental RBS support (using type sampling data from the type_fusion project).

def load: (ActiveSupport::Cache::Entry entry) -> ActiveSupport::Cache::Entry

This signature was generated using 1 sample from 1 application.

def load(entry)
  entry = entry.dup
  entry.dup_value!
  entry
end