Logo

Programming-Idioms

  • Pascal
  • VB
  • Lua
  • Ruby

Idiom #357 Swap elements of list

Swap the elements at indices i, j in the list items

items[i], items[j] = items[j], items[i]
classes
items.exchange(i,j);

Notice that not all list types in Pascal implement exchange though.
items[i], items[j] = items[j], items[i]

New implementation...
< >
programming-idioms.org