class ActiveSupport::HashWithIndifferentAccess

def slice(*keys)

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

def slice: (*Array[String] keys) -> Hash

This signature was generated using 1 sample from 1 application.

def slice(*keys)
  keys.map! { |key| convert_key(key) }
  self.class.new(super)
end