Sha256: b884d81d6d9d6fa645f359c687d2a7d176ceccada2983bd40d8662456d779849

Contents?: true

Size: 780 Bytes

Versions: 20

Compression:

Stored size: 780 Bytes

Contents

unless Array.method_defined? :bsearch_index
  class Array
    def bsearch_index
      return to_enum(__method__) unless block_given?
      from = 0
      to   = size - 1
      satisfied = nil
      while from <= to do
        midpoint = (from + to).div(2)
        result = yield(self[midpoint])
        case result
        when Numeric
          return midpoint if result == 0
          result = result < 0
        when true
          satisfied = midpoint
        when nil, false
          # nothing to do
        else
          raise TypeError, "wrong argument type #{result.class} (must be numeric, true, false or nil)"
        end

        if result
          to = midpoint - 1
        else
          from = midpoint + 1
        end
      end
      satisfied
    end
  end
end

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/backports-3.12.0/lib/backports/2.3.0/array/bsearch_index.rb
backports-3.16.1 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.16.0 lib/backports/2.3.0/array/bsearch_index.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/backports-3.15.0/lib/backports/2.3.0/array/bsearch_index.rb
backports-3.15.0 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.14.0 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.13.0 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.12.0 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.11.4 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.11.3 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.11.2 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.11.1 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.11.0 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.10.3 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.10.2 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.10.1 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.10.0 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.9.1 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.9.0 lib/backports/2.3.0/array/bsearch_index.rb
backports-3.8.0 lib/backports/2.3.0/array/bsearch_index.rb