class ActiveRecord::FixtureSet

def cached_fixtures(connection, keys_to_fetch = nil)

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

def cached_fixtures: (ActiveRecord::ConnectionAdapters::PostgreSQLAdapter connection, ?Array[] keys_to_fetch) -> untyped

This signature was generated using 9 samples from 1 application.

def cached_fixtures(connection, keys_to_fetch = nil)
  if keys_to_fetch
    cache_for_connection(connection).values_at(*keys_to_fetch)
  else
    cache_for_connection(connection).values
  end
end