Method: Arrow::ChunkedArray#reverse_each
- Defined in:
- lib/arrow/chunked-array.rb
#reverse_each(&block) ⇒ Object
103 104 105 106 107 108 109 |
# File 'lib/arrow/chunked-array.rb', line 103 def reverse_each(&block) return to_enum(__method__) unless block_given? chunks.reverse_each do |array| array.reverse_each(&block) end end |