class HexaPDF::PDFArray

def each

Note that the yielded value is already preprocessed like in #[].

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