Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Pascal

Idiom #357 Swap elements of list

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

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