Logo

Programming-Idioms

History of Idiom 19 > diff from v3 to v4

Edit summary for version 4 by :

Version 3

2015-07-31, 19:13:33

Version 4

2015-08-01, 16:40:25

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Code
x = x.reverse();