File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/tins-1.25.0/lib/tins/

Viewing File: count_by.rb

module Tins
  module CountBy
    def count_by(&b)
      b ||= lambda { |x| true }
      inject(0) { |s, e| s += 1 if b[e]; s }
    end
  end
end