Sha256: a88fae8bdbf33dfbbcc81a1914dad4609666379f838c53ba5c8fd487c07a9aaa

Contents?: true

Size: 587 Bytes

Versions: 11

Compression:

Stored size: 587 Bytes

Contents

# frozen_string_literal: true
module Gem
  class List

    include Enumerable
    attr_accessor :value, :tail

    def initialize(value = nil, tail = nil)
      @value = value
      @tail = tail
    end

    def each
      n = self
      while n
        yield n.value
        n = n.tail
      end
    end

    def to_a
      super.reverse
    end

    def prepend(value)
      List.new value, self
    end

    def pretty_print(q) # :nodoc:
      q.pp to_a
    end

    def self.prepend(list, value)
      return List.new(value) unless list
      List.new value, list
    end

  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rubygems-update-3.1.6 lib/rubygems/util/list.rb
rubygems-update-3.1.5 lib/rubygems/util/list.rb
rubygems-update-3.2.0.rc.1 lib/rubygems/util/list.rb
rubygems-update-3.1.4 lib/rubygems/util/list.rb
rubygems-update-3.1.3 lib/rubygems/util/list.rb
rubygems-update-3.1.2 lib/rubygems/util/list.rb
rubygems-update-3.1.1 lib/rubygems/util/list.rb
rubygems-update-3.1.0 lib/rubygems/util/list.rb
rubygems-update-3.1.0.pre3 lib/rubygems/util/list.rb
rubygems-update-3.1.0.pre2 lib/rubygems/util/list.rb
rubygems-update-3.1.0.pre1 lib/rubygems/util/list.rb