# File lib/backports/2.5.0/dir/each_child.rb, line 3
  def self.each_child(*args)
    return to_enum(__method__, *args) unless block_given?
    foreach(*args) { |f| yield f unless Backports::EXCLUDED_CHILDREN.include? f }
  end