Method: ProMotion::MotionTable::SectionedTable#section_at_index

Defined in:
lib/ProMotion/screen_helpers/_tables/_sectioned_table.rb

#section_at_index(index) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/ProMotion/screen_helpers/_tables/_sectioned_table.rb', line 41

def section_at_index(index)
  if @mt_filtered
    @mt_filtered_data.at(index)
  else
    @mt_table_view_groups.at(index)
  end
end