summaryrefslogtreecommitdiff
path: root/lib/puppet/util/external_iterator.rb
blob: 45c0fa434391ae126438a562d0e8a2e66175db91 (plain)
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
module Puppet
module Util
  class ExternalIterator
    def initialize(coll)
      @coll = coll
      @cur_index = -1
    end

    def next
      @cur_index = @cur_index + 1
      item_at(@cur_index)
    end

    def peek
      item_at(@cur_index + 1)
    end

    private
    def item_at(index)
      if @coll.length > index
        [@coll[index], index]
      else
        [nil, nil]
      end
    end
  end
end
end