class Rouge::InheritableHash

def [](k)

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

def []: ((Class | Symbol) k) -> (nil | String | Hash)

This signature was generated using 299 samples from 2 applications.

def [](k)
  value = super
  return value if own_keys.include?(k)
  value || parent[k]
end