Method “move”
function move(from_index, to_index)
Moves a node within the list
The other nodes in the list will be shifted so that the node will be at the given
toindex after the move.
Parameters
| Name | Type | Description |
|---|---|---|
from_index | integer | The index of the node to move |
to_index | integer | Target index of the node |