Method: Sequel::Plugins::List::InstanceMethods#move_down
- Defined in:
- lib/sequel/plugins/list.rb
#move_down(n = 1) ⇒ Object
Move this instance down the given number of places in the list, or 1 place if no argument is specified.
125 126 127 |
# File 'lib/sequel/plugins/list.rb', line 125 def move_down(n = 1) move_to(position_value + n) end |