class Rails::Initializable::Collection

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

# sig/rails/initializable.rbs

class Rails::Initializable::Collection < Rails::Initializable::Array
  def tsort_each_child: (Rails::Initializable::Initializer initializer, ) -> untyped
end

def +(other)

def +(other)
  Collection.new(to_a + other.to_a)
end

def tsort_each_child(initializer, &block)

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

def tsort_each_child: (Rails::Initializable::Initializer initializer, ) -> untyped

This signature was generated using 1 sample from 1 application.

def tsort_each_child(initializer, &block)
  select { |i| i.before == initializer.name || i.name == initializer.after }.each(&block)
end