Sha256: c4306fe4503e86418a5212b4f30c5e79b2793982520786002255f395e2a76857

Contents?: true

Size: 420 Bytes

Versions: 73

Compression:

Stored size: 420 Bytes

Contents

unless Enumerable.method_defined? :drop_while
  require 'enumerator'

  module Enumerable
    # Standard in Ruby 1.8.7+. See official documentation[http://ruby-doc.org/core-1.9/classes/Enumerable.html]
    def drop_while
      return to_enum(:drop_while) unless block_given?
      ary = []
      dropping = true
      each do |obj|
        ary << obj unless dropping &&= yield(obj)
      end
      ary
    end
  end
end

Version data entries

73 entries across 73 versions & 5 rubygems

Version Path
backports-3.25.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.24.1 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.24.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.23.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.22.1 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.22.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.21.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.20.2 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.20.1 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.20.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.19.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.18.2 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.18.1 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.18.0 lib/backports/1.8.7/enumerable/drop_while.rb
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/backports-3.12.0/lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.17.2 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.17.1 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.17.0 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.16.1 lib/backports/1.8.7/enumerable/drop_while.rb
backports-3.16.0 lib/backports/1.8.7/enumerable/drop_while.rb