class HexaPDF::PDFArray
def each
Calls the given block once for every value of the array.
array.each -> Enumerator
array.each {|value| block} -> array
:call-seq:
def each return to_enum(__method__) unless block_given? value.each_index {|index| yield(self[index]) } self end