# File lib/skeleton/graph.rb, line 46
    def each_dependent_for(base, &block)
      each_strongly_connected_component_from(base) do |dependent, _|
        yield(dependent)
      end
    end