class Rouge::InheritableList

def each(&b)

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

def each: () -> Array[Proc]

This signature was generated using 3 samples from 1 application.

def each(&b)
  return enum_for(:each) unless block_given?
  parent.each(&b)
  own_entries.each(&b)
end