Logo

Programming-Idioms

History of Idiom 19 > diff from v24 to v25

Edit summary for version 25 by :
New Scala implementation by user [meshelton]

Version 24

2016-02-17, 16:28:45

Version 25

2016-02-18, 16:57:57

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.

Imports
with Ada.Containers.Vectors;
use Ada.Containers;
Code
X.Reverse_Elements;