File: several.rb

package info (click to toggle)
ruby-powerpack 0.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 492 kB
  • sloc: ruby: 819; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 879 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
unless Enumerable.method_defined? :several?
  module Enumerable
    # Checks if two or more elements meet a certain predicate.
    #
    # @example
    #   [1, 2, 3, 4].several?(&:even?) #=> true
    #   [1, 1, 3, 3].several?(&:even?) #=> false
    #
    # Without a block uses the identify of the elements as default predicate.
    # This means that nil and false elements will be ignored.
    #
    # @example
    #   [1, false, nil].several? #=> false
    #   [1, 2, 3].several? #=>true
    def several?
      found_count = 0

      if block_given?
        each do |*o|
          if yield(*o)
            found_count += 1
            return true if found_count > 1
          end
        end
      else
        each do |o|
          if o
            found_count += 1
            return true if found_count > 1
          end
        end
      end

      false
    end
  end
end